diff options
author | Ulrich Müller <ulm@gentoo.org> | 2007-12-29 11:56:14 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2007-12-29 11:56:14 +0000 |
commit | d0cff895e66e523d2cbf3f7422f936966769ef78 (patch) | |
tree | eebab55e2511b5727991a24688662758d4a3a83e /app-editors/xemacs/files | |
parent | Enable the warning about obsolete files. (diff) | |
download | emacs-d0cff895e66e523d2cbf3f7422f936966769ef78.tar.gz emacs-d0cff895e66e523d2cbf3f7422f936966769ef78.tar.bz2 emacs-d0cff895e66e523d2cbf3f7422f936966769ef78.zip |
Move packages to xemacs overlay.
svn path=/emacs-overlay/; revision=903
Diffstat (limited to 'app-editors/xemacs/files')
-rw-r--r-- | app-editors/xemacs/files/font-lock-warning-face.patch | 19 | ||||
-rw-r--r-- | app-editors/xemacs/files/gdbm-and-db.patch | 37 | ||||
-rw-r--r-- | app-editors/xemacs/files/xemacs-21.5.28-int-format.patch | 43 | ||||
-rw-r--r-- | app-editors/xemacs/files/xemacs.desktop | 34 |
4 files changed, 0 insertions, 133 deletions
diff --git a/app-editors/xemacs/files/font-lock-warning-face.patch b/app-editors/xemacs/files/font-lock-warning-face.patch deleted file mode 100644 index 176bb39..0000000 --- a/app-editors/xemacs/files/font-lock-warning-face.patch +++ /dev/null @@ -1,19 +0,0 @@ -Index: font-lock.el -=================================================================== -RCS file: /pack/xemacscvs/XEmacs/xemacs/lisp/font-lock.el,v -retrieving revision 1.31 -diff -u -B -r1.31 font-lock.el ---- lisp/font-lock.el 2006/11/01 23:14:33 1.31 -+++ lisp/font-lock.el 2007/06/23 07:14:17 -@@ -721,6 +721,11 @@ - It is present only for horrid FSF compatibility reasons. - The corresponding face should be set using `edit-faces' or the - `set-face-*' functions.") -+(defvar font-lock-warning-face 'font-lock-warning-face -+ "This variable should not be set. -+It is present only for horrid FSF compatibility reasons. -+The corresponding face should be set using `edit-faces' or the -+`set-face-*' functions.") - - (defconst font-lock-face-list - '(font-lock-comment-face diff --git a/app-editors/xemacs/files/gdbm-and-db.patch b/app-editors/xemacs/files/gdbm-and-db.patch deleted file mode 100644 index d3c5d5f..0000000 --- a/app-editors/xemacs/files/gdbm-and-db.patch +++ /dev/null @@ -1,37 +0,0 @@ -XEmacs uses the legacy dbm mode from gdbm but does not take into -account that this function may be in gdbm_compat instead of gdbm. - -The Berkely DB checks aren't correct for version 4 due to a minor -thinko. - -Index: configure.ac -=================================================================== -RCS file: /pack/xemacscvs/XEmacs/xemacs/configure.ac,v -retrieving revision 1.59 -diff -u -B -r1.59 configure.ac ---- configure.ac 2007/05/21 03:50:13 1.59 -+++ configure.ac 2007/06/24 08:44:04 -@@ -5391,10 +5391,13 @@ - if test "$enable_database_gdbm" != "no"; then - AC_CHECK_LIB(gdbm, dbm_open, [ - enable_database_gdbm=yes enable_database_dbm=no libdbm=-lgdbm], [ -+ AC_CHECK_LIB(gdbm_compat, dbm_open, [ -+ enable_database_gdbm=yes enable_database_dbm=no libdbm="-lgdbm_compat -lgdbm"], [ - if test "$enable_database_gdbm" = "yes"; then - XE_DIE("Required GNU DBM support cannot be provided.") - fi -- enable_database_gdbm=no]) -+ enable_database_gdbm=no], -lgdbm) -+ ]) - fi - - dnl Check for DBM support in libc and libdbm. -@@ -5475,7 +5478,7 @@ - fi - - dnl Berk db 4.1 decorates public functions with version information -- if test "$enable_database_berkdb" != "yes" -a "$dbver" = "4"; then -+ if test "$enable_database_berkdb" = "yes" -a "$dbver" = "4"; then - rm -f $tempcname - echo "#include <$db_h_file>" > $tempcname - echo "configure___ dbfunc=db_create" >> $tempcname diff --git a/app-editors/xemacs/files/xemacs-21.5.28-int-format.patch b/app-editors/xemacs/files/xemacs-21.5.28-int-format.patch deleted file mode 100644 index b4b1a47..0000000 --- a/app-editors/xemacs/files/xemacs-21.5.28-int-format.patch +++ /dev/null @@ -1,43 +0,0 @@ - -diff -r 33f6ee3a6e75 src/doprnt.c ---- a/src/doprnt.c Thu Sep 06 21:51:29 2007 +0000 -+++ b/src/doprnt.c Mon Nov 26 03:46:16 2007 +0100 -@@ -776,9 +776,21 @@ emacs_doprnt_1 (Lisp_Object stream, cons - #endif /* HAVE_BIGFLOAT */ - else - { -- Ascbyte *text_to_print = alloca_array (char, 350); -+ Ascbyte *text_to_print; - Ascbyte constructed_spec[100]; - Ascbyte *p = constructed_spec; -+ int alloca_sz = 350; -+ int min = spec->minwidth, prec = spec->precision; -+ -+ if (prec < 0) -+ prec = 0; -+ if (min < 0) -+ min = 0; -+ -+ if (32+min+prec > alloca_sz) -+ alloca_sz = 32 + min + prec; -+ -+ text_to_print = alloca_array(char, alloca_sz); - - /* Mostly reconstruct the spec and use sprintf() to - format the string. */ -diff -r 33f6ee3a6e75 tests/automated/lisp-tests.el ---- a/tests/automated/lisp-tests.el Thu Sep 06 21:51:29 2007 +0000 -+++ b/tests/automated/lisp-tests.el Mon Nov 26 03:46:16 2007 +0100 -@@ -1279,6 +1279,10 @@ - (Assert (= (read (format "%d" most-negative-fixnum)) most-negative-fixnum)) - (Assert (= (read (format "%ld" most-negative-fixnum)) most-negative-fixnum)) - -+;; These used to crash. -+(Assert (eql (read (format "%f" 1.2e+302)) 1.2e+302)) -+(Assert (eql (read (format "%.1000d" 1)) 1)) -+ - ;;; "%u" is undocumented, and Emacs Lisp has no unsigned type. - ;;; What to do if "%u" is used with a negative number? - ;;; For non-bignum XEmacsen, the most reasonable thing seems to be to print an - - diff --git a/app-editors/xemacs/files/xemacs.desktop b/app-editors/xemacs/files/xemacs.desktop deleted file mode 100644 index 54f23a2..0000000 --- a/app-editors/xemacs/files/xemacs.desktop +++ /dev/null @@ -1,34 +0,0 @@ -[Desktop Entry] -Name=XEmacs Text Editor -Name[bg]=редактор XEmacs -Name[ca]=Editor XEmacs -Name[cs]=Editor XEmacs -Name[da]=XEmacs tekstredigerer -Name[de]=XEmacs Texteditor -Name[eo]=La redaktilo XEmakso -Name[es]=Emacs para X -Name[et]=Emacs X'i kasutajaliidesega -Name[fi]=XEmacs editori -Name[fr]=Éditeur XEmacs -Name[hu]=XEmacs szövegszerkesztő -Name[is]=XEmacs-ritill -Name[it]=Emacs per X -Name[ja]=XEmacs テキスト・エディター -Name[mk]=Софистицираниот XEmacs уредувач -Name[no]=XEmacs-tekstredigerer -Name[pt]=Editor XEmacs -Name[ro]=Editorul XEmacs -Name[ru]=Редактор XEmacs -Name[sk]=Editor XEmacs -Name[sl]=Urejevalnik XEmacs -Name[uk]=Редактор XEmacs -GenericName=Text Editor -Comment=Edit text -MimeType=text/english;text/plain;text/x-makefile;text/x-c++hdr;text/x-c++src;text/x-chdr;text/x-csrc;text/x-java;text/x-moc;text/x-pascal;text/x-tcl;text/x-tex;application/x-shellscript;text/x-c;text/x-c++; -Exec=xemacs %f -Icon=xemacs -Type=Application -Terminal=false -Categories=Development;TextEditor; -Encoding=UTF-8 -StartupWMClass=Emacs |