This commit is contained in:
parent
7e3d6c8ae8
commit
7037d564e4
@ -1,13 +0,0 @@
|
|||||||
--- lisp/files.el
|
|
||||||
+++ lisp/files.el 2007-11-05 12:27:44.225166531 +0100
|
|
||||||
@@ -2736,8 +2736,8 @@ is specified, returning t if it is speci
|
|
||||||
;; If caller wants only the safe variables,
|
|
||||||
;; install only them.
|
|
||||||
(dolist (elt result)
|
|
||||||
- (unless (or (memq (car elt) unsafe-vars)
|
|
||||||
- (memq (car elt) risky-vars))
|
|
||||||
+ (unless (or (member elt unsafe-vars)
|
|
||||||
+ (member elt risky-vars))
|
|
||||||
(hack-one-local-variable (car elt) (cdr elt))))
|
|
||||||
;; Query, except in the case where all are known safe
|
|
||||||
;; if the user wants no quuery in that case.
|
|
@ -1,86 +0,0 @@
|
|||||||
2007-11-15 Andreas Schwab <schwab@suse.de>
|
|
||||||
|
|
||||||
* editfns.c (Fformat): Correctly format EMACS_INT values.
|
|
||||||
Also take precision into account when formatting an integer.
|
|
||||||
|
|
||||||
Index: src/editfns.c
|
|
||||||
================================================================================
|
|
||||||
--- src/editfns.c
|
|
||||||
+++ src/editfns.c
|
|
||||||
@@ -3543,8 +3543,10 @@ usage: (format STRING &rest OBJECTS) */
|
|
||||||
precision[n+1] = 10 * precision[n+1] + *format - '0';
|
|
||||||
}
|
|
||||||
|
|
||||||
- if (format - this_format_start + 1 > longest_format)
|
|
||||||
- longest_format = format - this_format_start + 1;
|
|
||||||
+ /* Extra +1 for 'l' that we may need to insert into the
|
|
||||||
+ format. */
|
|
||||||
+ if (format - this_format_start + 2 > longest_format)
|
|
||||||
+ longest_format = format - this_format_start + 2;
|
|
||||||
|
|
||||||
if (format == end)
|
|
||||||
error ("Format string ends in middle of format specifier");
|
|
||||||
@@ -3605,7 +3607,7 @@ usage: (format STRING &rest OBJECTS) */
|
|
||||||
&& *format != 'i' && *format != 'X' && *format != 'c')
|
|
||||||
error ("Invalid format operation %%%c", *format);
|
|
||||||
|
|
||||||
- thissize = 30;
|
|
||||||
+ thissize = 30 + (precision[n] > 0 ? precision[n] : 0);
|
|
||||||
if (*format == 'c')
|
|
||||||
{
|
|
||||||
if (! SINGLE_BYTE_CHAR_P (XINT (args[n]))
|
|
||||||
@@ -3803,23 +3805,40 @@ usage: (format STRING &rest OBJECTS) */
|
|
||||||
format - this_format_start);
|
|
||||||
this_format[format - this_format_start] = 0;
|
|
||||||
|
|
||||||
- if (INTEGERP (args[n]))
|
|
||||||
+ if (format[-1] == 'e' || format[-1] == 'f' || format[-1] == 'g')
|
|
||||||
+ sprintf (p, this_format, XFLOAT_DATA (args[n]));
|
|
||||||
+ else
|
|
||||||
{
|
|
||||||
- if (format[-1] == 'd')
|
|
||||||
- sprintf (p, this_format, XINT (args[n]));
|
|
||||||
- /* Don't sign-extend for octal or hex printing. */
|
|
||||||
+ if (sizeof (EMACS_INT) > sizeof (int)
|
|
||||||
+ && format[-1] != 'c')
|
|
||||||
+ {
|
|
||||||
+ /* Insert 'l' before format spec. */
|
|
||||||
+ this_format[format - this_format_start]
|
|
||||||
+ = this_format[format - this_format_start - 1];
|
|
||||||
+ this_format[format - this_format_start - 1] = 'l';
|
|
||||||
+ this_format[format - this_format_start + 1] = 0;
|
|
||||||
+ }
|
|
||||||
+
|
|
||||||
+ if (INTEGERP (args[n]))
|
|
||||||
+ {
|
|
||||||
+ if (format[-1] == 'c')
|
|
||||||
+ sprintf (p, this_format, (int) XINT (args[n]));
|
|
||||||
+ else if (format[-1] == 'd')
|
|
||||||
+ sprintf (p, this_format, XINT (args[n]));
|
|
||||||
+ /* Don't sign-extend for octal or hex printing. */
|
|
||||||
+ else
|
|
||||||
+ sprintf (p, this_format, XUINT (args[n]));
|
|
||||||
+ }
|
|
||||||
+ else if (format[-1] == 'c')
|
|
||||||
+ sprintf (p, this_format, (int) XFLOAT_DATA (args[n]));
|
|
||||||
+ else if (format[-1] == 'd')
|
|
||||||
+ /* Maybe we should use "%1.0f" instead so it also works
|
|
||||||
+ for values larger than MAXINT. */
|
|
||||||
+ sprintf (p, this_format, (EMACS_INT) XFLOAT_DATA (args[n]));
|
|
||||||
else
|
|
||||||
- sprintf (p, this_format, XUINT (args[n]));
|
|
||||||
+ /* Don't sign-extend for octal or hex printing. */
|
|
||||||
+ sprintf (p, this_format, (EMACS_UINT) XFLOAT_DATA (args[n]));
|
|
||||||
}
|
|
||||||
- else if (format[-1] == 'e' || format[-1] == 'f' || format[-1] == 'g')
|
|
||||||
- sprintf (p, this_format, XFLOAT_DATA (args[n]));
|
|
||||||
- else if (format[-1] == 'd')
|
|
||||||
- /* Maybe we should use "%1.0f" instead so it also works
|
|
||||||
- for values larger than MAXINT. */
|
|
||||||
- sprintf (p, this_format, (EMACS_INT) XFLOAT_DATA (args[n]));
|
|
||||||
- else
|
|
||||||
- /* Don't sign-extend for octal or hex printing. */
|
|
||||||
- sprintf (p, this_format, (EMACS_UINT) XFLOAT_DATA (args[n]));
|
|
||||||
|
|
||||||
if (p > buf
|
|
||||||
&& multibyte
|
|
@ -1,12 +0,0 @@
|
|||||||
--- lisp/startup.el
|
|
||||||
+++ lisp/startup.el 2007-12-20 12:10:27.169138433 +0100
|
|
||||||
@@ -1829,6 +1829,9 @@ With a prefix argument, any user input h
|
|
||||||
((equal argi "-no-splash")
|
|
||||||
(setq inhibit-startup-message t))
|
|
||||||
|
|
||||||
+ ((equal argi "-iconic")
|
|
||||||
+ (setq inhibit-startup-message t))
|
|
||||||
+
|
|
||||||
((member argi '("-f" ; what the manual claims
|
|
||||||
"-funcall"
|
|
||||||
"-e")) ; what the source used to say
|
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:43853daeb7552684a359d4e63f9215b44f2d709ba3376996007e72f619ec8608
|
|
||||||
size 30480246
|
|
12
emacs-22.2-iconic.patch
Normal file
12
emacs-22.2-iconic.patch
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
--- lisp/startup.el
|
||||||
|
+++ lisp/startup.el 2008-03-31 12:23:04.503065574 +0200
|
||||||
|
@@ -1996,6 +1996,9 @@ A fancy display is used on graphic displ
|
||||||
|
((equal argi "-no-splash")
|
||||||
|
(setq inhibit-startup-screen t))
|
||||||
|
|
||||||
|
+ ((equal argi "-iconic")
|
||||||
|
+ (setq inhibit-startup-message t))
|
||||||
|
+
|
||||||
|
((member argi '("-f" ; what the manual claims
|
||||||
|
"-funcall"
|
||||||
|
"-e")) ; what the source used to say
|
@ -1,22 +1,24 @@
|
|||||||
--- .pkgextract
|
--- .pkgextract
|
||||||
+++ .pkgextract 2007-05-15 18:47:54.250121000 +0200
|
+++ .pkgextract 2008-03-31 12:47:06.572601686 +0200
|
||||||
@@ -0,0 +1,13 @@
|
@@ -0,0 +1,15 @@
|
||||||
+patch -s -p0 --suffix=.axp < ../emacs-22.0.99-linkscr.patch
|
+patch -s -p0 -b --suffix=.axp < ../emacs-22.0.99-linkscr.patch
|
||||||
+patch -s -p0 --suffix=.glibc < ../emacs-22.0.99-glibc.patch
|
+patch -s -p0 -b --suffix=.glibc < ../emacs-22.0.99-glibc.patch
|
||||||
+patch -s -p0 --suffix=.decl < ../emacs-22.0.99-decl.dif
|
+patch -s -p0 -b --suffix=.decl < ../emacs-22.0.99-decl.dif
|
||||||
+patch -s -p0 --suffix=.print < ../emacs-21.1-asian-print.patch
|
+patch -s -p0 -b --suffix=.print < ../emacs-21.1-asian-print.patch
|
||||||
+patch -s -p0 --suffix=.psbdf < ../emacs-22.0.99-ps-bdf.patch
|
+patch -s -p0 -b --suffix=.psbdf < ../emacs-22.0.99-ps-bdf.patch
|
||||||
+patch -s -p0 --suffix=.ppc64 < ../emacs-22.0.99-ppc64.patch
|
+patch -s -p0 -b --suffix=.ppc64 < ../emacs-22.0.99-ppc64.patch
|
||||||
+patch -s -p0 --suffix=.psmu < ../emacs-22.0.99-ps-mule.patch
|
+patch -s -p0 -b --suffix=.psmu < ../emacs-22.0.99-ps-mule.patch
|
||||||
+patch -s -p0 --suffix=.nvoid < ../emacs-22.0.99-nonvoid.patch
|
+patch -s -p0 -b --suffix=.nvoid < ../emacs-22.0.99-nonvoid.patch
|
||||||
+patch -s -p0 --suffix=.snd < ../emacs-22.0.99-sendmail-path.patch
|
+patch -s -p0 -b --suffix=.snd < ../emacs-22.0.99-sendmail-path.patch
|
||||||
+patch -s -p0 --suffix=.gcc4 < ../emacs-22.0.99-sentinel.patch
|
+patch -s -p0 -b --suffix=.gcc4 < ../emacs-22.0.99-sentinel.patch
|
||||||
+patch -s -p0 --suffix=.xim < ../emacs-22.0.99-xim.patch
|
+patch -s -p0 -b --suffix=.xim < ../emacs-22.0.99-xim.patch
|
||||||
+patch -s -p0 --suffix=.x11r7 < ../emacs-22.0.99-x11r7.patch
|
+patch -s -p0 -b --suffix=.x11r7 < ../emacs-22.0.99-x11r7.patch
|
||||||
+patch -s -p0 --suffix=.s390x < ../emacs-22.0.99-s390x.dif
|
+patch -s -p0 -b --suffix=.s390x < ../emacs-22.0.99-s390x.dif
|
||||||
|
+patch -s -p0 -b --suffix=.conf < ../emacs-22.1-conf.diff
|
||||||
|
+patch -s -p0 -b --suffix=.iconic < ../emacs-22.2-iconic.patch
|
||||||
--- Makefile.in
|
--- Makefile.in
|
||||||
+++ Makefile.in 2007-05-16 11:50:24.711789000 +0200
|
+++ Makefile.in 2007-05-16 11:50:25.000000000 +0200
|
||||||
@@ -384,10 +384,8 @@ install-arch-dep: mkdir
|
@@ -385,10 +385,8 @@ install-arch-dep: mkdir
|
||||||
exec_prefix=${exec_prefix} bindir=${bindir} \
|
exec_prefix=${exec_prefix} bindir=${bindir} \
|
||||||
libexecdir=${libexecdir} archlibdir=${archlibdir} \
|
libexecdir=${libexecdir} archlibdir=${archlibdir} \
|
||||||
INSTALL_STRIP=${INSTALL_STRIP})
|
INSTALL_STRIP=${INSTALL_STRIP})
|
||||||
@ -29,7 +31,7 @@
|
|||||||
-unset CDPATH; \
|
-unset CDPATH; \
|
||||||
for f in `cd lib-src && echo fns-*.el`; do \
|
for f in `cd lib-src && echo fns-*.el`; do \
|
||||||
if test -r lib-src/$$f ; then \
|
if test -r lib-src/$$f ; then \
|
||||||
@@ -525,15 +523,19 @@ install-arch-indep: mkdir info
|
@@ -526,15 +524,19 @@ install-arch-indep: mkdir info
|
||||||
for elt in $(INFO_FILES); do \
|
for elt in $(INFO_FILES); do \
|
||||||
(cd $${thisdir}; \
|
(cd $${thisdir}; \
|
||||||
${INSTALL_INFO} --info-dir=$(DESTDIR)${infodir} $(DESTDIR)${infodir}/$$elt); \
|
${INSTALL_INFO} --info-dir=$(DESTDIR)${infodir} $(DESTDIR)${infodir}/$$elt); \
|
||||||
@ -50,7 +52,7 @@
|
|||||||
done
|
done
|
||||||
|
|
||||||
### Install LEIM files. Although they are machine-independent, we
|
### Install LEIM files. Although they are machine-independent, we
|
||||||
@@ -595,8 +597,8 @@ uninstall:
|
@@ -596,8 +598,8 @@ uninstall:
|
||||||
rm -f $$f; \
|
rm -f $$f; \
|
||||||
done; \
|
done; \
|
||||||
done;)
|
done;)
|
||||||
@ -62,8 +64,8 @@
|
|||||||
|
|
||||||
FRC:
|
FRC:
|
||||||
--- configure.in
|
--- configure.in
|
||||||
+++ configure.in 2007-05-15 18:49:52.630666000 +0200
|
+++ configure.in 2008-03-31 12:43:19.387363991 +0200
|
||||||
@@ -363,11 +363,11 @@ dnl see the `changequote' comment above.
|
@@ -377,11 +377,11 @@ dnl see the `changequote' comment above.
|
||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
|
|
||||||
@ -77,7 +79,7 @@
|
|||||||
machine=arm opsys=gnu-linux
|
machine=arm opsys=gnu-linux
|
||||||
;;
|
;;
|
||||||
|
|
||||||
@@ -646,7 +646,7 @@ dnl see the `changequote' comment above.
|
@@ -660,7 +660,7 @@ dnl see the `changequote' comment above.
|
||||||
CFLAGS="-D_INCLUDE__STDC_A1_SOURCE $CFLAGS"
|
CFLAGS="-D_INCLUDE__STDC_A1_SOURCE $CFLAGS"
|
||||||
;;
|
;;
|
||||||
|
|
||||||
@ -86,7 +88,7 @@
|
|||||||
machine=hp800 opsys=gnu-linux
|
machine=hp800 opsys=gnu-linux
|
||||||
;;
|
;;
|
||||||
|
|
||||||
@@ -666,6 +666,11 @@ dnl see the `changequote' comment above.
|
@@ -680,6 +680,11 @@ dnl see the `changequote' comment above.
|
||||||
machine=hp800 opsys=nextstep
|
machine=hp800 opsys=nextstep
|
||||||
;;
|
;;
|
||||||
|
|
||||||
@ -98,7 +100,7 @@
|
|||||||
## Orion machines
|
## Orion machines
|
||||||
orion-orion-bsd* )
|
orion-orion-bsd* )
|
||||||
machine=orion opsys=bsd4-2
|
machine=orion opsys=bsd4-2
|
||||||
@@ -684,10 +689,10 @@ dnl see the `changequote' comment above.
|
@@ -698,10 +703,10 @@ dnl see the `changequote' comment above.
|
||||||
i370-ibm-aix*)
|
i370-ibm-aix*)
|
||||||
machine=ibm370aix opsys=usg5-3
|
machine=ibm370aix opsys=usg5-3
|
||||||
;;
|
;;
|
||||||
@ -111,7 +113,7 @@
|
|||||||
machine=ibms390x opsys=gnu-linux
|
machine=ibms390x opsys=gnu-linux
|
||||||
;;
|
;;
|
||||||
rs6000-ibm-aix3.1* | powerpc-ibm-aix3.1* )
|
rs6000-ibm-aix3.1* | powerpc-ibm-aix3.1* )
|
||||||
@@ -970,7 +975,7 @@ dnl see the `changequote' comment above.
|
@@ -984,7 +989,7 @@ dnl see the `changequote' comment above.
|
||||||
;;
|
;;
|
||||||
|
|
||||||
## Suns
|
## Suns
|
||||||
@ -120,7 +122,7 @@
|
|||||||
machine=sparc opsys=gnu-linux
|
machine=sparc opsys=gnu-linux
|
||||||
;;
|
;;
|
||||||
|
|
||||||
@@ -1152,7 +1157,7 @@ dnl see the `changequote' comment above.
|
@@ -1166,7 +1171,7 @@ dnl see the `changequote' comment above.
|
||||||
*-esix5* ) opsys=esix5r4; NON_GNU_CPP=/usr/lib/cpp ;;
|
*-esix5* ) opsys=esix5r4; NON_GNU_CPP=/usr/lib/cpp ;;
|
||||||
*-esix* ) opsys=esix ;;
|
*-esix* ) opsys=esix ;;
|
||||||
*-xenix* ) opsys=xenix ;;
|
*-xenix* ) opsys=xenix ;;
|
||||||
@ -129,7 +131,7 @@
|
|||||||
*-sco3.2v4* ) opsys=sco4 ; NON_GNU_CPP=/lib/cpp ;;
|
*-sco3.2v4* ) opsys=sco4 ; NON_GNU_CPP=/lib/cpp ;;
|
||||||
*-sco3.2v5* ) opsys=sco5
|
*-sco3.2v5* ) opsys=sco5
|
||||||
NON_GNU_CPP=/lib/cpp
|
NON_GNU_CPP=/lib/cpp
|
||||||
@@ -1170,12 +1175,12 @@ dnl see the `changequote' comment above.
|
@@ -1184,12 +1189,12 @@ dnl see the `changequote' comment above.
|
||||||
;;
|
;;
|
||||||
|
|
||||||
## m68k Linux-based GNU system
|
## m68k Linux-based GNU system
|
||||||
@ -144,7 +146,7 @@
|
|||||||
machine=mips opsys=gnu-linux
|
machine=mips opsys=gnu-linux
|
||||||
;;
|
;;
|
||||||
|
|
||||||
@@ -1192,12 +1197,12 @@ dnl see the `changequote' comment above.
|
@@ -1206,7 +1211,7 @@ dnl see the `changequote' comment above.
|
||||||
;;
|
;;
|
||||||
|
|
||||||
## AMD x86-64 Linux-based GNU system
|
## AMD x86-64 Linux-based GNU system
|
||||||
@ -153,13 +155,7 @@
|
|||||||
machine=amdx86-64 opsys=gnu-linux
|
machine=amdx86-64 opsys=gnu-linux
|
||||||
;;
|
;;
|
||||||
|
|
||||||
## Tensilica Xtensa Linux-based GNU system
|
@@ -1228,7 +1233,7 @@ esac
|
||||||
- xtensa-*-linux-gnu* )
|
|
||||||
+ xtensa-*-linux* )
|
|
||||||
machine=xtensa opsys=gnu-linux
|
|
||||||
;;
|
|
||||||
|
|
||||||
@@ -1214,7 +1219,7 @@ esac
|
|
||||||
### above.
|
### above.
|
||||||
if test x"${opsys}" = x; then
|
if test x"${opsys}" = x; then
|
||||||
case "${canonical}" in
|
case "${canonical}" in
|
||||||
@ -168,17 +164,17 @@
|
|||||||
*-bsd4.[01] ) opsys=bsd4-1 ;;
|
*-bsd4.[01] ) opsys=bsd4-1 ;;
|
||||||
*-bsd4.2 ) opsys=bsd4-2 ;;
|
*-bsd4.2 ) opsys=bsd4-2 ;;
|
||||||
*-bsd4.3 ) opsys=bsd4-3 ;;
|
*-bsd4.3 ) opsys=bsd4-3 ;;
|
||||||
@@ -1520,7 +1525,7 @@ AC_SYS_LARGEFILE
|
@@ -1558,7 +1563,7 @@ AC_SYS_LARGEFILE
|
||||||
### The standard library on x86-64 GNU/Linux distributions can
|
### The standard library on x86-64 GNU/Linux distributions can
|
||||||
### be located in either /usr/lib64 or /usr/lib.
|
### be located in either /usr/lib64 or /usr/lib.
|
||||||
case "${canonical}" in
|
case "${canonical}" in
|
||||||
- x86_64-*-linux-gnu* )
|
- x86_64-*-linux-gnu* | s390x-*-linux-gnu* )
|
||||||
+ x86_64-*-linux* )
|
+ x86_64-*-linux* | s390x-*-linux* )
|
||||||
if test -d /usr/lib64; then
|
if test -d /usr/lib64; then
|
||||||
AC_DEFINE(HAVE_X86_64_LIB64_DIR, 1,
|
AC_DEFINE(HAVE_X86_64_LIB64_DIR, 1,
|
||||||
[Define to 1 if the file /usr/lib64 exists.])
|
[Define to 1 if the file /usr/lib64 exists.])
|
||||||
--- etc/MACHINES
|
--- etc/MACHINES
|
||||||
+++ etc/MACHINES 2007-05-15 18:50:36.035268000 +0200
|
+++ etc/MACHINES 2007-05-15 18:50:36.000000000 +0200
|
||||||
@@ -74,7 +74,7 @@ Alliant FX/2800 (i860-alliant-bsd)
|
@@ -74,7 +74,7 @@ Alliant FX/2800 (i860-alliant-bsd)
|
||||||
|
|
||||||
Known to work with 19.26 and OS version 2.2, compiler version 1.3.
|
Known to work with 19.26 and OS version 2.2, compiler version 1.3.
|
||||||
@ -234,7 +230,7 @@
|
|||||||
|
|
||||||
(using the location of the 32-bit X libraries on your system).
|
(using the location of the 32-bit X libraries on your system).
|
||||||
--- etc/etags.1
|
--- etc/etags.1
|
||||||
+++ etc/etags.1 2007-05-15 18:52:17.870077000 +0200
|
+++ etc/etags.1 2007-05-15 18:52:18.000000000 +0200
|
||||||
@@ -9,7 +9,7 @@
|
@@ -9,7 +9,7 @@
|
||||||
..
|
..
|
||||||
|
|
||||||
@ -270,7 +266,7 @@
|
|||||||
+\fBgnuctags\fP) in the current working directory.
|
+\fBgnuctags\fP) in the current working directory.
|
||||||
Files specified with relative file names will be recorded in the tag
|
Files specified with relative file names will be recorded in the tag
|
||||||
table with file names relative to the directory where the tag table
|
table with file names relative to the directory where the tag table
|
||||||
resides. If the tag table is in /dev, however, the file names are made
|
resides. If the tag table is in /dev or is the standard output,
|
||||||
@@ -71,7 +71,7 @@ parsing of the file names following the
|
@@ -71,7 +71,7 @@ parsing of the file names following the
|
||||||
language, overriding guesses based on filename extensions.
|
language, overriding guesses based on filename extensions.
|
||||||
.SH OPTIONS
|
.SH OPTIONS
|
||||||
@ -318,16 +314,7 @@
|
|||||||
\fBetags\fP accepts this option.
|
\fBetags\fP accepts this option.
|
||||||
.TP
|
.TP
|
||||||
\fB\-i\fP \fIfile\fP, \fB\-\-include=\fIfile\fP
|
\fB\-i\fP \fIfile\fP, \fB\-\-include=\fIfile\fP
|
||||||
@@ -138,7 +138,7 @@ Create tag entries for variables that ar
|
@@ -169,7 +169,7 @@ the previous ones. The regexps are of o
|
||||||
constructs in C++, Objective C, Java. This is the default for etags.
|
|
||||||
.TP
|
|
||||||
.B \-\-no\-members
|
|
||||||
-Do not tag member variables. This is the default for ctags.
|
|
||||||
+Do not tag member variables. This is the default for gnuctags.
|
|
||||||
.TP
|
|
||||||
.B \-\-packages\-only
|
|
||||||
Only tag packages in Ada files.
|
|
||||||
@@ -168,7 +168,7 @@ the previous ones. The regexps are of o
|
|
||||||
where \fItagregexp\fP is used to match the tag. It should not match
|
where \fItagregexp\fP is used to match the tag. It should not match
|
||||||
useless characters. If the match is such that more characters than
|
useless characters. If the match is such that more characters than
|
||||||
needed are unavoidably matched by \fItagregexp\fP, it may be useful to
|
needed are unavoidably matched by \fItagregexp\fP, it may be useful to
|
||||||
@ -336,7 +323,7 @@
|
|||||||
ignores regexps without a \fInameregexp\fP. The syntax of regexps is
|
ignores regexps without a \fInameregexp\fP. The syntax of regexps is
|
||||||
the same as in emacs. The following character escape sequences are
|
the same as in emacs. The following character escape sequences are
|
||||||
supported: \\a, \\b, \\d, \\e, \\f, \\n, \\r, \\t, \\v, which
|
supported: \\a, \\b, \\d, \\e, \\f, \\n, \\r, \\t, \\v, which
|
||||||
@@ -243,12 +243,12 @@ freely intermixed with filenames and the
|
@@ -244,12 +244,12 @@ freely intermixed with filenames and the
|
||||||
.TP
|
.TP
|
||||||
.B \-t, \-\-typedefs
|
.B \-t, \-\-typedefs
|
||||||
Record typedefs in C code as tags. Since this is the default behavior
|
Record typedefs in C code as tags. Since this is the default behavior
|
||||||
@ -351,7 +338,7 @@
|
|||||||
.TP
|
.TP
|
||||||
.B \-u, \-\-update
|
.B \-u, \-\-update
|
||||||
Update tag entries for \fIfiles\fP specified on command line, leaving
|
Update tag entries for \fIfiles\fP specified on command line, leaving
|
||||||
@@ -256,15 +256,15 @@ tag entries for other files in place. C
|
@@ -257,15 +257,15 @@ tag entries for other files in place. C
|
||||||
by deleting the existing entries for the given files and then
|
by deleting the existing entries for the given files and then
|
||||||
rewriting the new entries at the end of the tags file. It is often
|
rewriting the new entries at the end of the tags file. It is often
|
||||||
faster to simply rebuild the entire tag file than to use this.
|
faster to simply rebuild the entire tag file than to use this.
|
||||||
@ -371,8 +358,8 @@
|
|||||||
.B \-h, \-H, \-\-help
|
.B \-h, \-H, \-\-help
|
||||||
Print usage information. Followed by one or more \-\-language=LANG
|
Print usage information. Followed by one or more \-\-language=LANG
|
||||||
--- leim/Makefile.in
|
--- leim/Makefile.in
|
||||||
+++ leim/Makefile.in 2007-05-22 15:58:18.686951000 +0200
|
+++ leim/Makefile.in 2007-05-22 15:58:19.000000000 +0200
|
||||||
@@ -216,6 +216,9 @@ leim-list.el: ${SUBDIRS} ${TIT-MISC} cha
|
@@ -218,6 +218,9 @@ leim-list.el: ${SUBDIRS} ${TIT-MISC} cha
|
||||||
fi
|
fi
|
||||||
sed -n '/^[^;]/ p' < ${srcdir}/leim-ext.el >> $@
|
sed -n '/^[^;]/ p' < ${srcdir}/leim-ext.el >> $@
|
||||||
|
|
||||||
@ -383,7 +370,7 @@
|
|||||||
if [ ! -d ${INSTALLDIR} ] ; then \
|
if [ ! -d ${INSTALLDIR} ] ; then \
|
||||||
${srcdir}/${dot}${dot}/mkinstalldirs ${INSTALLDIR}; \
|
${srcdir}/${dot}${dot}/mkinstalldirs ${INSTALLDIR}; \
|
||||||
--- lib-src/Makefile.in
|
--- lib-src/Makefile.in
|
||||||
+++ lib-src/Makefile.in 2007-05-15 18:54:25.327601000 +0200
|
+++ lib-src/Makefile.in 2007-05-15 18:54:25.000000000 +0200
|
||||||
@@ -106,7 +106,7 @@ INSTALL_STRIP =
|
@@ -106,7 +106,7 @@ INSTALL_STRIP =
|
||||||
|
|
||||||
# Things that a user might actually run,
|
# Things that a user might actually run,
|
||||||
@ -393,7 +380,7 @@
|
|||||||
INSTALLABLE_SCRIPTS = rcs-checkin grep-changelog
|
INSTALLABLE_SCRIPTS = rcs-checkin grep-changelog
|
||||||
|
|
||||||
# Things that Emacs runs internally, or during the build process,
|
# Things that Emacs runs internally, or during the build process,
|
||||||
@@ -427,8 +427,8 @@ ebrowse${EXEEXT}: ${srcdir}/ebrowse.c $(
|
@@ -430,8 +430,8 @@ ebrowse${EXEEXT}: ${srcdir}/ebrowse.c $(
|
||||||
|
|
||||||
/* We depend on etags to assure that parallel makes don\'t write two
|
/* We depend on etags to assure that parallel makes don\'t write two
|
||||||
etags.o files on top of each other. */
|
etags.o files on top of each other. */
|
||||||
@ -466,7 +453,7 @@
|
|||||||
(scheme-start-file (car cmdlist)) (cdr cmdlist)))
|
(scheme-start-file (car cmdlist)) (cdr cmdlist)))
|
||||||
(inferior-scheme-mode)))
|
(inferior-scheme-mode)))
|
||||||
--- lisp/dired.el
|
--- lisp/dired.el
|
||||||
+++ lisp/dired.el 2007-05-15 18:55:29.522418000 +0200
|
+++ lisp/dired.el 2007-05-15 18:55:30.000000000 +0200
|
||||||
@@ -70,7 +70,7 @@ If nil, `dired-listing-switches' is used
|
@@ -70,7 +70,7 @@ If nil, `dired-listing-switches' is used
|
||||||
|
|
||||||
;;;###autoload
|
;;;###autoload
|
||||||
@ -477,7 +464,7 @@
|
|||||||
(if (file-exists-p "/usr/sbin/chown")
|
(if (file-exists-p "/usr/sbin/chown")
|
||||||
"/usr/sbin/chown"
|
"/usr/sbin/chown"
|
||||||
--- lisp/help.el
|
--- lisp/help.el
|
||||||
+++ lisp/help.el 2007-05-15 18:57:08.520930000 +0200
|
+++ lisp/help.el 2007-05-15 18:57:09.000000000 +0200
|
||||||
@@ -38,6 +38,9 @@
|
@@ -38,6 +38,9 @@
|
||||||
(add-hook 'temp-buffer-setup-hook 'help-mode-setup)
|
(add-hook 'temp-buffer-setup-hook 'help-mode-setup)
|
||||||
(add-hook 'temp-buffer-show-hook 'help-mode-finish)
|
(add-hook 'temp-buffer-show-hook 'help-mode-finish)
|
||||||
@ -489,8 +476,8 @@
|
|||||||
(let ((map (make-sparse-keymap)))
|
(let ((map (make-sparse-keymap)))
|
||||||
(define-key map (char-to-string help-char) 'help-for-help)
|
(define-key map (char-to-string help-char) 'help-for-help)
|
||||||
--- lisp/ldefs-boot.el
|
--- lisp/ldefs-boot.el
|
||||||
+++ lisp/ldefs-boot.el 2007-05-15 18:58:09.723427000 +0200
|
+++ lisp/ldefs-boot.el 2007-05-15 18:58:10.000000000 +0200
|
||||||
@@ -6862,7 +6862,7 @@ some of the `ls' switches are not suppor
|
@@ -6874,7 +6874,7 @@ some of the `ls' switches are not suppor
|
||||||
|
|
||||||
(custom-autoload (quote dired-listing-switches) "dired" t)
|
(custom-autoload (quote dired-listing-switches) "dired" t)
|
||||||
|
|
||||||
@ -602,7 +589,7 @@
|
|||||||
(define-key mule-keymap "r" 'revert-buffer-with-coding-system)
|
(define-key mule-keymap "r" 'revert-buffer-with-coding-system)
|
||||||
(define-key mule-keymap "F" 'set-file-name-coding-system)
|
(define-key mule-keymap "F" 'set-file-name-coding-system)
|
||||||
--- lisp/mh-e/mh-e.el
|
--- lisp/mh-e/mh-e.el
|
||||||
+++ lisp/mh-e/mh-e.el 2007-05-21 14:27:40.379538854 +0200
|
+++ lisp/mh-e/mh-e.el 2007-05-21 14:27:40.000000000 +0200
|
||||||
@@ -143,6 +143,9 @@
|
@@ -143,6 +143,9 @@
|
||||||
"/usr/local/mh/"
|
"/usr/local/mh/"
|
||||||
"/usr/bin/mh/" ; Ultrix 4.2, Linux
|
"/usr/bin/mh/" ; Ultrix 4.2, Linux
|
||||||
@ -639,7 +626,7 @@
|
|||||||
|
|
||||||
--- lisp/net/ange-ftp.el
|
--- lisp/net/ange-ftp.el
|
||||||
+++ lisp/net/ange-ftp.el 2003-07-23 18:08:56.000000000 +0200
|
+++ lisp/net/ange-ftp.el 2003-07-23 18:08:56.000000000 +0200
|
||||||
@@ -4873,7 +4873,7 @@ NEWNAME should be the name to give the n
|
@@ -4878,7 +4878,7 @@ NEWNAME should be the name to give the n
|
||||||
; "If a host matches this regexp then it is assumed to be running VOS.")
|
; "If a host matches this regexp then it is assumed to be running VOS.")
|
||||||
;
|
;
|
||||||
;(defun ange-ftp-vos-host (host)
|
;(defun ange-ftp-vos-host (host)
|
||||||
@ -648,7 +635,7 @@
|
|||||||
; (save-match-data
|
; (save-match-data
|
||||||
; (string-match ange-ftp-vos-host-regexp host))))
|
; (string-match ange-ftp-vos-host-regexp host))))
|
||||||
;
|
;
|
||||||
@@ -4984,7 +4984,7 @@ NEWNAME should be the name to give the n
|
@@ -4989,7 +4989,7 @@ NEWNAME should be the name to give the n
|
||||||
|
|
||||||
;; Return non-nil if HOST is running VMS.
|
;; Return non-nil if HOST is running VMS.
|
||||||
(defun ange-ftp-vms-host (host)
|
(defun ange-ftp-vms-host (host)
|
||||||
@ -657,7 +644,7 @@
|
|||||||
(save-match-data
|
(save-match-data
|
||||||
(string-match ange-ftp-vms-host-regexp host))))
|
(string-match ange-ftp-vms-host-regexp host))))
|
||||||
|
|
||||||
@@ -5493,7 +5493,7 @@ Other orders of $ and _ seem to all work
|
@@ -5498,7 +5498,7 @@ Other orders of $ and _ seem to all work
|
||||||
|
|
||||||
;; Return non-nil if HOST is running MTS.
|
;; Return non-nil if HOST is running MTS.
|
||||||
(defun ange-ftp-mts-host (host)
|
(defun ange-ftp-mts-host (host)
|
||||||
@ -666,7 +653,7 @@
|
|||||||
(save-match-data
|
(save-match-data
|
||||||
(string-match ange-ftp-mts-host-regexp host))))
|
(string-match ange-ftp-mts-host-regexp host))))
|
||||||
|
|
||||||
@@ -5692,7 +5692,7 @@ Other orders of $ and _ seem to all work
|
@@ -5697,7 +5697,7 @@ Other orders of $ and _ seem to all work
|
||||||
|
|
||||||
;; Return non-nil if HOST is running CMS.
|
;; Return non-nil if HOST is running CMS.
|
||||||
(defun ange-ftp-cms-host (host)
|
(defun ange-ftp-cms-host (host)
|
||||||
@ -703,7 +690,7 @@
|
|||||||
|
|
||||||
(message "The uncompress package is obsolete; use M-x auto-compression-mode")
|
(message "The uncompress package is obsolete; use M-x auto-compression-mode")
|
||||||
--- lisp/textmodes/ispell.el
|
--- lisp/textmodes/ispell.el
|
||||||
+++ lisp/textmodes/ispell.el 2007-05-22 10:48:36.408268131 +0200
|
+++ lisp/textmodes/ispell.el 2007-05-22 10:48:36.000000000 +0200
|
||||||
@@ -305,8 +305,11 @@ Must be greater than 1."
|
@@ -305,8 +305,11 @@ Must be greater than 1."
|
||||||
:group 'ispell)
|
:group 'ispell)
|
||||||
|
|
||||||
@ -718,7 +705,7 @@
|
|||||||
"Program invoked by \\[ispell-word] and \\[ispell-region] commands."
|
"Program invoked by \\[ispell-word] and \\[ispell-region] commands."
|
||||||
:type 'string
|
:type 'string
|
||||||
:group 'ispell)
|
:group 'ispell)
|
||||||
@@ -519,7 +522,7 @@ re-start Emacs."
|
@@ -524,7 +527,7 @@ re-start Emacs."
|
||||||
|
|
||||||
;;; First part of dictionary, shortened for loaddefs.el
|
;;; First part of dictionary, shortened for loaddefs.el
|
||||||
;;;###autoload
|
;;;###autoload
|
||||||
@ -727,7 +714,7 @@
|
|||||||
ispell-dictionary-alist-1
|
ispell-dictionary-alist-1
|
||||||
'((nil ; default (English.aff)
|
'((nil ; default (English.aff)
|
||||||
"[A-Za-z]" "[^A-Za-z]" "[']" nil ("-B") nil iso-8859-1)
|
"[A-Za-z]" "[^A-Za-z]" "[']" nil ("-B") nil iso-8859-1)
|
||||||
@@ -543,7 +546,7 @@ re-start Emacs."
|
@@ -548,7 +551,7 @@ re-start Emacs."
|
||||||
|
|
||||||
;;; Second part of dictionary, shortened for loaddefs.el
|
;;; Second part of dictionary, shortened for loaddefs.el
|
||||||
;;;###autoload
|
;;;###autoload
|
||||||
@ -736,7 +723,7 @@
|
|||||||
ispell-dictionary-alist-2
|
ispell-dictionary-alist-2
|
||||||
'(("czech"
|
'(("czech"
|
||||||
"[A-Za-z\301\311\314\315\323\332\331\335\256\251\310\330\317\253\322\341\351\354\355\363\372\371\375\276\271\350\370\357\273\362]"
|
"[A-Za-z\301\311\314\315\323\332\331\335\256\251\310\330\317\253\322\341\351\354\355\363\372\371\375\276\271\350\370\357\273\362]"
|
||||||
@@ -564,7 +567,7 @@ re-start Emacs."
|
@@ -569,7 +572,7 @@ re-start Emacs."
|
||||||
|
|
||||||
;;; Third part of dictionary, shortened for loaddefs.el
|
;;; Third part of dictionary, shortened for loaddefs.el
|
||||||
;;;###autoload
|
;;;###autoload
|
||||||
@ -745,7 +732,7 @@
|
|||||||
ispell-dictionary-alist-3
|
ispell-dictionary-alist-3
|
||||||
'(("esperanto"
|
'(("esperanto"
|
||||||
"[A-Za-z\246\254\266\274\306\330\335\336\346\370\375\376]"
|
"[A-Za-z\246\254\266\274\306\330\335\336\346\370\375\376]"
|
||||||
@@ -587,7 +590,7 @@ re-start Emacs."
|
@@ -592,7 +595,7 @@ re-start Emacs."
|
||||||
|
|
||||||
;;; Fourth part of dictionary, shortened for loaddefs.el
|
;;; Fourth part of dictionary, shortened for loaddefs.el
|
||||||
;;;###autoload
|
;;;###autoload
|
||||||
@ -754,7 +741,7 @@
|
|||||||
ispell-dictionary-alist-4
|
ispell-dictionary-alist-4
|
||||||
'(("german" ; german.aff
|
'(("german" ; german.aff
|
||||||
"[a-zA-Z\"]" "[^a-zA-Z\"]" "[']" t ("-C") "~tex" iso-8859-1)
|
"[a-zA-Z\"]" "[^a-zA-Z\"]" "[']" t ("-C") "~tex" iso-8859-1)
|
||||||
@@ -611,7 +614,7 @@ re-start Emacs."
|
@@ -616,7 +619,7 @@ re-start Emacs."
|
||||||
|
|
||||||
;;; Fifth part of dictionary, shortened for loaddefs.el
|
;;; Fifth part of dictionary, shortened for loaddefs.el
|
||||||
;;;###autoload
|
;;;###autoload
|
||||||
@ -763,7 +750,7 @@
|
|||||||
ispell-dictionary-alist-5
|
ispell-dictionary-alist-5
|
||||||
'(("norsk" ; 8 bit Norwegian mode
|
'(("norsk" ; 8 bit Norwegian mode
|
||||||
"[A-Za-z\305\306\307\310\311\322\324\330\345\346\347\350\351\362\364\370]"
|
"[A-Za-z\305\306\307\310\311\322\324\330\345\346\347\350\351\362\364\370]"
|
||||||
@@ -632,7 +635,7 @@ re-start Emacs."
|
@@ -637,7 +640,7 @@ re-start Emacs."
|
||||||
|
|
||||||
;;; Sixth part of dictionary, shortened for loaddefs.el
|
;;; Sixth part of dictionary, shortened for loaddefs.el
|
||||||
;;;###autoload
|
;;;###autoload
|
||||||
@ -772,7 +759,7 @@
|
|||||||
ispell-dictionary-alist-6
|
ispell-dictionary-alist-6
|
||||||
;; include Russian iso coding system too?
|
;; include Russian iso coding system too?
|
||||||
;; "[']" t ("-d" "russian") "~latin1" iso-8859-1
|
;; "[']" t ("-d" "russian") "~latin1" iso-8859-1
|
||||||
@@ -1046,6 +1049,56 @@ The variable `ispell-library-directory'
|
@@ -1051,6 +1054,56 @@ The variable `ispell-library-directory'
|
||||||
(if ispell-menu-map-needed
|
(if ispell-menu-map-needed
|
||||||
(progn
|
(progn
|
||||||
(setq ispell-menu-map (make-sparse-keymap "Spell"))
|
(setq ispell-menu-map (make-sparse-keymap "Spell"))
|
||||||
@ -1146,7 +1133,7 @@
|
|||||||
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
+;; Ende von linux.el
|
+;; Ende von linux.el
|
||||||
--- site-lisp/term/locale.el
|
--- site-lisp/term/locale.el
|
||||||
+++ site-lisp/term/locale.el 2007-06-04 15:26:38.703969552 +0200
|
+++ site-lisp/term/locale.el 2007-06-04 15:26:39.000000000 +0200
|
||||||
@@ -0,0 +1,16 @@
|
@@ -0,0 +1,16 @@
|
||||||
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
+;;; term/locale.el for site-lisp path
|
+;;; term/locale.el for site-lisp path
|
||||||
@ -1165,8 +1152,8 @@
|
|||||||
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
+;; Ende von locale.el
|
+;; Ende von locale.el
|
||||||
--- src/Makefile.in
|
--- src/Makefile.in
|
||||||
+++ src/Makefile.in 2007-05-15 19:19:55.029819000 +0200
|
+++ src/Makefile.in 2007-05-15 19:19:55.000000000 +0200
|
||||||
@@ -710,6 +710,9 @@ otherobj= $(termcapobj) lastfile.o $(mal
|
@@ -711,6 +711,9 @@ otherobj= $(termcapobj) lastfile.o $(mal
|
||||||
#define TOOLTIP_SUPPORT
|
#define TOOLTIP_SUPPORT
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -1176,7 +1163,7 @@
|
|||||||
/* List of Lisp files loaded into the dumped Emacs. It is arranged
|
/* List of Lisp files loaded into the dumped Emacs. It is arranged
|
||||||
like this because it is easier to generate it semi-mechanically from
|
like this because it is easier to generate it semi-mechanically from
|
||||||
loadup.el this way.
|
loadup.el this way.
|
||||||
@@ -908,6 +911,7 @@ shortlisp= \
|
@@ -909,6 +912,7 @@ shortlisp= \
|
||||||
../lisp/ediff-hook.elc \
|
../lisp/ediff-hook.elc \
|
||||||
../lisp/widget.elc \
|
../lisp/widget.elc \
|
||||||
../lisp/window.elc \
|
../lisp/window.elc \
|
||||||
@ -1185,7 +1172,7 @@
|
|||||||
|
|
||||||
/* Lisp files that may or may not be used.
|
/* Lisp files that may or may not be used.
|
||||||
--- src/config.in
|
--- src/config.in
|
||||||
+++ src/config.in 2007-05-15 19:25:17.876169000 +0200
|
+++ src/config.in 2007-05-15 19:25:18.000000000 +0200
|
||||||
@@ -911,6 +911,8 @@ Boston, MA 02110-1301, USA. */
|
@@ -911,6 +911,8 @@ Boston, MA 02110-1301, USA. */
|
||||||
code using `volatile' can become incorrect without. Disable with care. */
|
code using `volatile' can become incorrect without. Disable with care. */
|
||||||
#undef volatile
|
#undef volatile
|
||||||
@ -1221,7 +1208,7 @@
|
|||||||
|
|
||||||
--- src/keyboard.c
|
--- src/keyboard.c
|
||||||
+++ src/keyboard.c 2003-07-23 18:08:56.000000000 +0200
|
+++ src/keyboard.c 2003-07-23 18:08:56.000000000 +0200
|
||||||
@@ -1395,7 +1395,7 @@ DEFUN ("abort-recursive-edit", Fabort_re
|
@@ -1396,7 +1396,7 @@ DEFUN ("abort-recursive-edit", Fabort_re
|
||||||
/* Restore mouse tracking enablement. See Ftrack_mouse for the only use
|
/* Restore mouse tracking enablement. See Ftrack_mouse for the only use
|
||||||
of this function. */
|
of this function. */
|
||||||
|
|
||||||
@ -1260,7 +1247,7 @@
|
|||||||
exit (0);
|
exit (0);
|
||||||
}
|
}
|
||||||
--- src/m/hp800.h
|
--- src/m/hp800.h
|
||||||
+++ src/m/hp800.h 2007-05-15 19:33:25.880021000 +0200
|
+++ src/m/hp800.h 2007-05-15 19:33:26.000000000 +0200
|
||||||
@@ -71,7 +71,7 @@ Boston, MA 02110-1301, USA. */
|
@@ -71,7 +71,7 @@ Boston, MA 02110-1301, USA. */
|
||||||
|
|
||||||
/* Common definitions for HPUX and GNU/Linux. */
|
/* Common definitions for HPUX and GNU/Linux. */
|
3
emacs-22.2.tar.bz2
Normal file
3
emacs-22.2.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:1b6eff78d035d4276f18834f05623cdfa6a21a2b2cf317df68dae5d75c7ec397
|
||||||
|
size 30831525
|
@ -1,3 +1,71 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Mar 31 13:08:37 CEST 2008 - werner@suse.de
|
||||||
|
|
||||||
|
- Update to emacs version 22.1
|
||||||
|
* Relicense all FSF files to GPLv3 or later.
|
||||||
|
* COPYING, info/COPYING: Switch to GPLv3.
|
||||||
|
* `describe-project' is renamed to `describe-gnu-project'.
|
||||||
|
* `view-todo' is renamed to `view-emacs-todo'.
|
||||||
|
* `find-name-dired' now uses -iname rather than -name
|
||||||
|
for case-insensitive filesystems.
|
||||||
|
* In Image mode, whenever the displayed image is wider and/or higher
|
||||||
|
than the window, the usual keys for moving the cursor cause the image
|
||||||
|
to be scrolled horizontally or vertically instead.
|
||||||
|
* Emacs can use stock icons in the tool bar when compiled with Gtk+.
|
||||||
|
However, this feature is disabled by default. To enable it, put
|
||||||
|
(setq icon-map-list '(x-gtk-stock-map))
|
||||||
|
in your .emacs or some other startup file. For more information, see
|
||||||
|
the documentation for the two variables icon-map-list and x-gtk-stock-map.
|
||||||
|
* Scrollbars follow the system theme on Windows XP and later.
|
||||||
|
Windows XP introduced themed scrollbars, but applications have to take
|
||||||
|
special steps to use them. Emacs now has the appropriate resources linked
|
||||||
|
in to make it use the scrollbars from the system theme.
|
||||||
|
* `bad-packages-alist' will warn about external packages that are known
|
||||||
|
to cause problems in this version of Emacs.
|
||||||
|
* The values of `dired-recursive-deletes' and `dired-recursive-copies'
|
||||||
|
have been changed to `top'. This means that the user is asked once,
|
||||||
|
before deleting/copying the indicated directory recursively.
|
||||||
|
* `browse-url-emacs' loads a URL into an Emacs buffer. Handy for *.el URLs.
|
||||||
|
* The command gdba has been removed as gdb works now for those cases where it
|
||||||
|
was needed. In text command mode, if you have problems before execution has
|
||||||
|
started, use M-x gud-gdb.
|
||||||
|
* desktop.el now detects conflicting uses of the desktop file.
|
||||||
|
* Compilation mode now correctly respects the value of
|
||||||
|
`compilation-scroll-output' between invocations.
|
||||||
|
* `font-lock-comment-face' no longer differs from the default on
|
||||||
|
displays with fewer than 16 colors and dark background (e.g. older
|
||||||
|
xterms and the Linux console).
|
||||||
|
* New Modes and Packages in Emacs 22.2
|
||||||
|
- bibtex-style-mode helps you write BibTeX's *.bst files.
|
||||||
|
- The new package css-mode.el provides a major mode for editing CSS files.
|
||||||
|
- The new package vera-mode.el provides a major mode for editing Vera files.
|
||||||
|
- The new package verilog-mode.el provides a major mode for editing Verilog files.
|
||||||
|
- The new package socks.el implements the SOCKS v5 protocol.
|
||||||
|
* VC
|
||||||
|
- VC backends can provide completion of revision names.
|
||||||
|
- VC backends can provide extra menu entries to the "Version Control" menu.
|
||||||
|
- VC has some support for Mercurial (Hg).
|
||||||
|
- VC has some support for Monotone (Mtn).
|
||||||
|
- VC has some support for Bazaar (Bzr).
|
||||||
|
- VC has some support for Git.
|
||||||
|
* Incompatible Lisp Changes in Emacs 22.2
|
||||||
|
- shell.el no longer defines the aliases `dirtrack-toggle' and
|
||||||
|
`dirtrack-mode' for `shell-dirtrack-mode'.
|
||||||
|
* Lisp Changes in Emacs 22.2.
|
||||||
|
- Frame-local variables are deprecated and are slated for removal.
|
||||||
|
- The function invisible-p returns non-nil if the character
|
||||||
|
after a specified position is invisible.
|
||||||
|
- inhibit-modification-hooks is bound to t while running modification hooks.
|
||||||
|
- New function `window-full-width-p' returns t if a window is as wide
|
||||||
|
as its frame.
|
||||||
|
- The new function `image-refresh' refreshes all images associated
|
||||||
|
with a given image specification.
|
||||||
|
- The new function `combine-and-quote-strings' concatenates a list of strings
|
||||||
|
using a specified separator.
|
||||||
|
- The new function `split-string-and-unquote' performs the inverse operation to
|
||||||
|
`combine-and-quote-strings', i.e. splits a single string into a list
|
||||||
|
of strings, undoing any quoting added by `combine-and-quote-strings'.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jan 4 16:36:10 CET 2008 - werner@suse.de
|
Fri Jan 4 16:36:10 CET 2008 - werner@suse.de
|
||||||
|
|
||||||
|
519
emacs.spec
519
emacs.spec
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package emacs (Version 22.1)
|
# spec file for package emacs (Version 22.2)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
# This file and all modifications and additions to the pristine
|
# This file and all modifications and additions to the pristine
|
||||||
@ -10,6 +10,7 @@
|
|||||||
|
|
||||||
# norootforbuild
|
# norootforbuild
|
||||||
|
|
||||||
|
|
||||||
Name: emacs
|
Name: emacs
|
||||||
BuildRequires: alsa-devel bind-devel fonts-config giflib-devel gtk2-devel krb5-devel libjpeg-devel libpng-devel libtiff-devel ncurses-devel nmh sendmail texinfo update-desktop-files xaw3d-devel xorg-x11-devel
|
BuildRequires: alsa-devel bind-devel fonts-config giflib-devel gtk2-devel krb5-devel libjpeg-devel libpng-devel libtiff-devel ncurses-devel nmh sendmail texinfo update-desktop-files xaw3d-devel xorg-x11-devel
|
||||||
Url: http://www.gnu.org/software/emacs/
|
Url: http://www.gnu.org/software/emacs/
|
||||||
@ -19,17 +20,16 @@ Obsoletes: ge_exec ge_site emac_nox emacmisc emacsbin emacsger emacs-url Mu
|
|||||||
Requires: emacs-info ctags emacs_program
|
Requires: emacs-info ctags emacs_program
|
||||||
Provides: ge_site ge_exec emacs-url Mule-UCS emacs-calc erc
|
Provides: ge_site ge_exec emacs-url Mule-UCS emacs-calc erc
|
||||||
AutoReqProv: on
|
AutoReqProv: on
|
||||||
Version: 22.1
|
Version: 22.2
|
||||||
Release: 77
|
Release: 1
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
||||||
Summary: GNU Emacs Base Package
|
Summary: GNU Emacs Base Package
|
||||||
Source: emacs-22.1.tar.bz2
|
Source: emacs-22.2.tar.bz2
|
||||||
Source1: app-defaults.Emacs
|
Source1: app-defaults.Emacs
|
||||||
Source2: site-lisp.tar.bz2
|
Source2: site-lisp.tar.bz2
|
||||||
Source3: dot.gnu-emacs
|
Source3: dot.gnu-emacs
|
||||||
Source4: emacs-rpmlintrc
|
Source4: emacs-rpmlintrc
|
||||||
Source5: emacs.desktop
|
Source5: emacs.desktop
|
||||||
Patch: emacs-22.0.99.dif
|
Patch: emacs-22.2.dif
|
||||||
Patch1: emacs-22.0.99-linkscr.patch
|
Patch1: emacs-22.0.99-linkscr.patch
|
||||||
Patch2: emacs-22.0.99-glibc.patch
|
Patch2: emacs-22.0.99-glibc.patch
|
||||||
Patch3: emacs-22.0.99-decl.dif
|
Patch3: emacs-22.0.99-decl.dif
|
||||||
@ -44,9 +44,8 @@ Patch11: emacs-22.0.99-xim.patch
|
|||||||
Patch12: emacs-22.0.99-x11r7.patch
|
Patch12: emacs-22.0.99-x11r7.patch
|
||||||
Patch13: emacs-22.0.99-s390x.dif
|
Patch13: emacs-22.0.99-s390x.dif
|
||||||
Patch14: emacs-22.1-conf.diff
|
Patch14: emacs-22.1-conf.diff
|
||||||
Patch15: emacs-22.1-CVE-2007-5795.dif
|
Patch15: emacs-22.2-iconic.patch
|
||||||
Patch16: emacs-22.1-format.diff
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
Patch17: emacs-22.1-iconic.patch
|
|
||||||
%{expand: %%global _exec_prefix %(type -p pkg-config &>/dev/null && pkg-config --variable prefix x11 || echo /usr/X11R6)}
|
%{expand: %%global _exec_prefix %(type -p pkg-config &>/dev/null && pkg-config --variable prefix x11 || echo /usr/X11R6)}
|
||||||
%if "%_exec_prefix" == "/usr/X11R6"
|
%if "%_exec_prefix" == "/usr/X11R6"
|
||||||
%define _x11lib %{_exec_prefix}/%{_lib}
|
%define _x11lib %{_exec_prefix}/%{_lib}
|
||||||
@ -61,6 +60,7 @@ Patch17: emacs-22.1-iconic.patch
|
|||||||
%define _x11inc %{_includedir}
|
%define _x11inc %{_includedir}
|
||||||
%define appDefaultsFile %{_x11data}/app-defaults/Emacs
|
%define appDefaultsFile %{_x11data}/app-defaults/Emacs
|
||||||
%endif
|
%endif
|
||||||
|
%define info_files eintr elisp emacs ccmode cl dired-x ediff forms gnus message sieve pgg emacs-mime info mh-e reftex sc vip viper widget efaq ada-mode autotype calc idlwave eudc ebrowse pcl-cvs woman eshell org url speedbar tramp ses smtpmail flymake newsticker rcirc erc
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Basic package for the GNU Emacs editor. Requires emacs-x11 or
|
Basic package for the GNU Emacs editor. Requires emacs-x11 or
|
||||||
@ -83,6 +83,7 @@ Authors:
|
|||||||
Ken Stevens <k.stevens@ieee.org>
|
Ken Stevens <k.stevens@ieee.org>
|
||||||
|
|
||||||
%package -n emacs-nox
|
%package -n emacs-nox
|
||||||
|
License: GPL v2 or later
|
||||||
PreReq: fileutils
|
PreReq: fileutils
|
||||||
Requires: emacs
|
Requires: emacs
|
||||||
Provides: emacs_program
|
Provides: emacs_program
|
||||||
@ -114,6 +115,7 @@ Authors:
|
|||||||
Ken Stevens <k.stevens@ieee.org>
|
Ken Stevens <k.stevens@ieee.org>
|
||||||
|
|
||||||
%package -n emacs-x11
|
%package -n emacs-x11
|
||||||
|
License: GPL v2 or later
|
||||||
PreReq: fileutils
|
PreReq: fileutils
|
||||||
Requires: emacs
|
Requires: emacs
|
||||||
Enhances: xorg-x11-libs
|
Enhances: xorg-x11-libs
|
||||||
@ -146,6 +148,7 @@ Authors:
|
|||||||
Ken Stevens <k.stevens@ieee.org>
|
Ken Stevens <k.stevens@ieee.org>
|
||||||
|
|
||||||
%package -n emacs-el
|
%package -n emacs-el
|
||||||
|
License: GPL v2 or later
|
||||||
Obsoletes: ge_lisp
|
Obsoletes: ge_lisp
|
||||||
Requires: emacs
|
Requires: emacs
|
||||||
Summary: Several Lisp Files for GNU Emacs
|
Summary: Several Lisp Files for GNU Emacs
|
||||||
@ -172,6 +175,7 @@ Authors:
|
|||||||
Eric S. Raymond <esr@thyrsus.com>
|
Eric S. Raymond <esr@thyrsus.com>
|
||||||
|
|
||||||
%package -n emacs-info
|
%package -n emacs-info
|
||||||
|
License: GPL v2 or later
|
||||||
Obsoletes: ge_info elispman elisp-manual elispint emacs-lisp-intro
|
Obsoletes: ge_info elispman elisp-manual elispint emacs-lisp-intro
|
||||||
Provides: elispman elisp-manual elispint emacs-lisp-intro
|
Provides: elispman elisp-manual elispint emacs-lisp-intro
|
||||||
Summary: Info files for GNU Emacs
|
Summary: Info files for GNU Emacs
|
||||||
@ -215,17 +219,30 @@ Authors:
|
|||||||
%patch12 -p0 -b .x11r7
|
%patch12 -p0 -b .x11r7
|
||||||
%patch13 -p0 -b .s390x
|
%patch13 -p0 -b .s390x
|
||||||
%patch14 -p0 -b .conf
|
%patch14 -p0 -b .conf
|
||||||
%patch15 -p0 -b .CVE20075795
|
%patch15 -p0 -b .iconic
|
||||||
%patch16 -p0 -b .format
|
|
||||||
%patch17 -p0 -b .iconic
|
|
||||||
%patch
|
%patch
|
||||||
if test ! -e $HOME/.mh_profile && type -p install-mh > /dev/null 2>&1; then
|
if test ! -e $HOME/.mh_profile && type -p install-mh > /dev/null 2>&1; then
|
||||||
install-mh -auto < /dev/null
|
install-mh -auto < /dev/null
|
||||||
fi
|
fi
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%define info_files eintr elisp emacs ccmode cl dired-x ediff forms gnus message sieve pgg emacs-mime info mh-e reftex sc vip viper widget efaq ada-mode autotype calc idlwave eudc ebrowse pcl-cvs woman eshell org url speedbar tramp ses smtpmail flymake newsticker rcirc erc
|
cflags ()
|
||||||
if test "eintr elisp $(perl -e 'while (<>) { if (/^INFO_TARGETS/) { s/.*=//; while (s/\\$//) { $_ .= <>; }; s,\.\./info/,,g; s/\s+/ /g; s/^ //; s/ $//; print; exit; } }' man/Makefile.in)" != "%info_files"; then
|
{
|
||||||
|
local flag=$1; shift
|
||||||
|
case "${RPM_OPT_FLAGS}" in
|
||||||
|
*${flag}*) return
|
||||||
|
esac
|
||||||
|
if test -n "$1" && gcc -Werror $flag -S -o /dev/null -xc /dev/null > /dev/null 2>&1 ; then
|
||||||
|
local var=$1; shift
|
||||||
|
eval $var=\${$var:+\$$var\ }$flag
|
||||||
|
fi
|
||||||
|
if test -n "$1" && g++ -Werror $flag -S -o /dev/null -xc++ /dev/null > /dev/null 2>&1 ; then
|
||||||
|
local var=$1; shift
|
||||||
|
eval $var=\${$var:+\$$var\ }$flag
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
if test "eintr elisp $(sed -rn '/^INFO_TARGET/{s@.*=\s*@@; :j; s@\.\./info/@@g; /\\$/{N; s@\\\n\s*@@; b j;}; p;}' man/Makefile.in)" != "%info_files"
|
||||||
|
then
|
||||||
echo Please update info_files >&2
|
echo Please update info_files >&2
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
@ -237,12 +254,14 @@ VERSION=%{version}
|
|||||||
SYS="--build=%{_target_cpu}-suse-%{_build_os}
|
SYS="--build=%{_target_cpu}-suse-%{_build_os}
|
||||||
"
|
"
|
||||||
%endif
|
%endif
|
||||||
CFLAGS="${RPM_OPT_FLAGS} -pipe -fno-strict-aliasing \
|
CFLAGS="${RPM_OPT_FLAGS} -D_GNU_SOURCE"
|
||||||
-D_GNU_SOURCE \
|
cflags -std=gnu89 CFLAGS
|
||||||
-Wno-pointer-sign \
|
cflags -pipe CFLAGS
|
||||||
-Wno-unused-variable \
|
cflags -fno-strict-aliasing CFLAGS
|
||||||
-Wno-unused-label \
|
cflags -Wno-pointer-sign CFLAGS
|
||||||
"
|
cflags -Wno-unused-variable CFLAGS
|
||||||
|
cflags -Wno-unused-label CFLAGS
|
||||||
|
cflags -Wno-unprototyped-calls CFLAGS
|
||||||
SMALL="-DSYSTEM_PURESIZE_EXTRA=25000 \
|
SMALL="-DSYSTEM_PURESIZE_EXTRA=25000 \
|
||||||
-DSITELOAD_PURESIZE_EXTRA=10000 \
|
-DSITELOAD_PURESIZE_EXTRA=10000 \
|
||||||
"
|
"
|
||||||
@ -292,47 +311,38 @@ DESTTOP="--with-x \
|
|||||||
--with-system-malloc \
|
--with-system-malloc \
|
||||||
"
|
"
|
||||||
%{?suse_update_config}
|
%{?suse_update_config}
|
||||||
malloc_chk_off ()
|
make_mchkoff ()
|
||||||
{
|
{
|
||||||
local ret
|
local ret
|
||||||
local OMC=$MALLOC_CHECK_
|
local OMC=$MALLOC_CHECK_
|
||||||
unset MALLOC_CHECK_
|
unset MALLOC_CHECK_
|
||||||
${1+"$@"}
|
make ${1+"$@"}
|
||||||
ret=$?
|
set -- $(src/emacs -batch --eval "(print pure-space-overflow)")
|
||||||
|
test "$1" = "nil" || exit 1
|
||||||
|
make -C src/ versionclean
|
||||||
|
make
|
||||||
if test -n "$OMC" ; then
|
if test -n "$OMC" ; then
|
||||||
MALLOC_CHECK_=$OMC
|
MALLOC_CHECK_=$OMC
|
||||||
export MALLOC_CHECK_
|
export MALLOC_CHECK_
|
||||||
fi
|
fi
|
||||||
return $ret
|
|
||||||
}
|
}
|
||||||
autoconf
|
autoconf
|
||||||
CFLAGS="$CFLAGS $SMALL" ./configure ${COMP} ${PREFIX} ${NOX11} ${SYS}
|
CFLAGS="$CFLAGS $SMALL" ./configure ${COMP} ${PREFIX} ${NOX11} ${SYS}
|
||||||
malloc_chk_off make bootstrap
|
make_mchkoff bootstrap
|
||||||
set -- $(src/emacs -batch --eval "(print pure-space-overflow)")
|
|
||||||
test "$1" = "nil" || exit 1
|
|
||||||
#
|
|
||||||
make -C lisp updates compile
|
make -C lisp updates compile
|
||||||
for i in `find site-lisp/ -name '*.el'`; do
|
for i in `find site-lisp/ -name '*.el'`; do
|
||||||
src/emacs -batch -q --no-site -f batch-byte-compile $i; \
|
src/emacs -batch -q --no-site -f batch-byte-compile $i; \
|
||||||
done
|
done
|
||||||
rm -f src/emacs src/emacs-%{version}*
|
|
||||||
make
|
|
||||||
cp src/emacs emacs-nox
|
cp src/emacs emacs-nox
|
||||||
make distclean
|
make distclean
|
||||||
#
|
#
|
||||||
CFLAGS="$CFLAGS $LARGE" ./configure ${COMP} ${PREFIX} ${GTK} ${SYS}
|
CFLAGS="$CFLAGS $LARGE" ./configure ${COMP} ${PREFIX} ${GTK} ${SYS}
|
||||||
malloc_chk_off make bootfast
|
make_mchkoff bootfast
|
||||||
set -- $(src/emacs -batch --eval "(print pure-space-overflow)")
|
|
||||||
test "$1" = "nil" || exit 1
|
|
||||||
#
|
|
||||||
cp src/emacs emacs-gtk
|
cp src/emacs emacs-gtk
|
||||||
make distclean
|
make distclean
|
||||||
#
|
#
|
||||||
CFLAGS="$CFLAGS $LARGE" ./configure ${COMP} ${PREFIX} ${X11} ${SYS}
|
CFLAGS="$CFLAGS $LARGE" ./configure ${COMP} ${PREFIX} ${X11} ${SYS}
|
||||||
malloc_chk_off make bootfast
|
make_mchkoff bootfast
|
||||||
set -- $(src/emacs -batch --eval "(print pure-space-overflow)")
|
|
||||||
test "$1" = "nil" || exit 1
|
|
||||||
#
|
|
||||||
cp src/emacs emacs-x11
|
cp src/emacs emacs-x11
|
||||||
#
|
#
|
||||||
cd ../site-lisp/
|
cd ../site-lisp/
|
||||||
@ -710,6 +720,7 @@ done
|
|||||||
/usr/share/emacs/%{version}/etc/images/gnus/kill-group.xpm
|
/usr/share/emacs/%{version}/etc/images/gnus/kill-group.xpm
|
||||||
/usr/share/emacs/%{version}/etc/images/gnus/mail-reply.pbm
|
/usr/share/emacs/%{version}/etc/images/gnus/mail-reply.pbm
|
||||||
/usr/share/emacs/%{version}/etc/images/gnus/mail-reply.xpm
|
/usr/share/emacs/%{version}/etc/images/gnus/mail-reply.xpm
|
||||||
|
/usr/share/emacs/%{version}/etc/images/gnus/mail-send.xpm
|
||||||
/usr/share/emacs/%{version}/etc/images/gnus/next-ur.pbm
|
/usr/share/emacs/%{version}/etc/images/gnus/next-ur.pbm
|
||||||
/usr/share/emacs/%{version}/etc/images/gnus/next-ur.xpm
|
/usr/share/emacs/%{version}/etc/images/gnus/next-ur.xpm
|
||||||
/usr/share/emacs/%{version}/etc/images/gnus/post.pbm
|
/usr/share/emacs/%{version}/etc/images/gnus/post.pbm
|
||||||
@ -1217,6 +1228,7 @@ done
|
|||||||
/usr/share/emacs/%{version}/lisp/emacs-lisp/cl-compat.elc
|
/usr/share/emacs/%{version}/lisp/emacs-lisp/cl-compat.elc
|
||||||
/usr/share/emacs/%{version}/lisp/emacs-lisp/cl-extra.elc
|
/usr/share/emacs/%{version}/lisp/emacs-lisp/cl-extra.elc
|
||||||
/usr/share/emacs/%{version}/lisp/emacs-lisp/cl-indent.elc
|
/usr/share/emacs/%{version}/lisp/emacs-lisp/cl-indent.elc
|
||||||
|
/usr/share/emacs/%{version}/lisp/emacs-lisp/cl-loaddefs.el
|
||||||
/usr/share/emacs/%{version}/lisp/emacs-lisp/cl-macs.elc
|
/usr/share/emacs/%{version}/lisp/emacs-lisp/cl-macs.elc
|
||||||
/usr/share/emacs/%{version}/lisp/emacs-lisp/cl-seq.elc
|
/usr/share/emacs/%{version}/lisp/emacs-lisp/cl-seq.elc
|
||||||
/usr/share/emacs/%{version}/lisp/emacs-lisp/cl-specs.el
|
/usr/share/emacs/%{version}/lisp/emacs-lisp/cl-specs.el
|
||||||
@ -1317,7 +1329,6 @@ done
|
|||||||
/usr/share/emacs/%{version}/lisp/erc/erc-menu.elc
|
/usr/share/emacs/%{version}/lisp/erc/erc-menu.elc
|
||||||
/usr/share/emacs/%{version}/lisp/erc/erc-netsplit.elc
|
/usr/share/emacs/%{version}/lisp/erc/erc-netsplit.elc
|
||||||
/usr/share/emacs/%{version}/lisp/erc/erc-networks.elc
|
/usr/share/emacs/%{version}/lisp/erc/erc-networks.elc
|
||||||
/usr/share/emacs/%{version}/lisp/erc/erc-nicklist.elc
|
|
||||||
/usr/share/emacs/%{version}/lisp/erc/erc-notify.elc
|
/usr/share/emacs/%{version}/lisp/erc/erc-notify.elc
|
||||||
/usr/share/emacs/%{version}/lisp/erc/erc-page.elc
|
/usr/share/emacs/%{version}/lisp/erc/erc-page.elc
|
||||||
/usr/share/emacs/%{version}/lisp/erc/erc-pcomplete.elc
|
/usr/share/emacs/%{version}/lisp/erc/erc-pcomplete.elc
|
||||||
@ -1748,6 +1759,7 @@ done
|
|||||||
/usr/share/emacs/%{version}/lisp/net/rcompile.elc
|
/usr/share/emacs/%{version}/lisp/net/rcompile.elc
|
||||||
/usr/share/emacs/%{version}/lisp/net/rlogin.elc
|
/usr/share/emacs/%{version}/lisp/net/rlogin.elc
|
||||||
/usr/share/emacs/%{version}/lisp/net/snmp-mode.elc
|
/usr/share/emacs/%{version}/lisp/net/snmp-mode.elc
|
||||||
|
/usr/share/emacs/%{version}/lisp/net/socks.elc
|
||||||
/usr/share/emacs/%{version}/lisp/net/telnet.elc
|
/usr/share/emacs/%{version}/lisp/net/telnet.elc
|
||||||
/usr/share/emacs/%{version}/lisp/net/tls.elc
|
/usr/share/emacs/%{version}/lisp/net/tls.elc
|
||||||
/usr/share/emacs/%{version}/lisp/net/tramp-ftp.elc
|
/usr/share/emacs/%{version}/lisp/net/tramp-ftp.elc
|
||||||
@ -1916,6 +1928,8 @@ done
|
|||||||
/usr/share/emacs/%{version}/lisp/progmodes/simula.elc
|
/usr/share/emacs/%{version}/lisp/progmodes/simula.elc
|
||||||
/usr/share/emacs/%{version}/lisp/progmodes/sql.elc
|
/usr/share/emacs/%{version}/lisp/progmodes/sql.elc
|
||||||
/usr/share/emacs/%{version}/lisp/progmodes/tcl.elc
|
/usr/share/emacs/%{version}/lisp/progmodes/tcl.elc
|
||||||
|
/usr/share/emacs/%{version}/lisp/progmodes/vera-mode.elc
|
||||||
|
/usr/share/emacs/%{version}/lisp/progmodes/verilog-mode.elc
|
||||||
/usr/share/emacs/%{version}/lisp/progmodes/vhdl-mode.elc
|
/usr/share/emacs/%{version}/lisp/progmodes/vhdl-mode.elc
|
||||||
/usr/share/emacs/%{version}/lisp/progmodes/which-func.elc
|
/usr/share/emacs/%{version}/lisp/progmodes/which-func.elc
|
||||||
/usr/share/emacs/%{version}/lisp/progmodes/xscheme.elc
|
/usr/share/emacs/%{version}/lisp/progmodes/xscheme.elc
|
||||||
@ -2001,7 +2015,9 @@ done
|
|||||||
/usr/share/emacs/%{version}/lisp/textmodes/artist.elc
|
/usr/share/emacs/%{version}/lisp/textmodes/artist.elc
|
||||||
/usr/share/emacs/%{version}/lisp/textmodes/bib-mode.elc
|
/usr/share/emacs/%{version}/lisp/textmodes/bib-mode.elc
|
||||||
/usr/share/emacs/%{version}/lisp/textmodes/bibtex.elc
|
/usr/share/emacs/%{version}/lisp/textmodes/bibtex.elc
|
||||||
|
/usr/share/emacs/%{version}/lisp/textmodes/bibtex-style.elc
|
||||||
/usr/share/emacs/%{version}/lisp/textmodes/conf-mode.elc
|
/usr/share/emacs/%{version}/lisp/textmodes/conf-mode.elc
|
||||||
|
/usr/share/emacs/%{version}/lisp/textmodes/css-mode.elc
|
||||||
/usr/share/emacs/%{version}/lisp/textmodes/dns-mode.elc
|
/usr/share/emacs/%{version}/lisp/textmodes/dns-mode.elc
|
||||||
/usr/share/emacs/%{version}/lisp/textmodes/enriched.elc
|
/usr/share/emacs/%{version}/lisp/textmodes/enriched.elc
|
||||||
/usr/share/emacs/%{version}/lisp/textmodes/fill.elc
|
/usr/share/emacs/%{version}/lisp/textmodes/fill.elc
|
||||||
@ -2085,9 +2101,13 @@ done
|
|||||||
/usr/share/emacs/%{version}/lisp/url/vc-dav.elc
|
/usr/share/emacs/%{version}/lisp/url/vc-dav.elc
|
||||||
/usr/share/emacs/%{version}/lisp/userlock.elc
|
/usr/share/emacs/%{version}/lisp/userlock.elc
|
||||||
/usr/share/emacs/%{version}/lisp/vc-arch.elc
|
/usr/share/emacs/%{version}/lisp/vc-arch.elc
|
||||||
|
/usr/share/emacs/%{version}/lisp/vc-bzr.elc
|
||||||
/usr/share/emacs/%{version}/lisp/vc-cvs.elc
|
/usr/share/emacs/%{version}/lisp/vc-cvs.elc
|
||||||
|
/usr/share/emacs/%{version}/lisp/vc-git.elc
|
||||||
|
/usr/share/emacs/%{version}/lisp/vc-hg.elc
|
||||||
/usr/share/emacs/%{version}/lisp/vc-hooks.elc
|
/usr/share/emacs/%{version}/lisp/vc-hooks.elc
|
||||||
/usr/share/emacs/%{version}/lisp/vc-mcvs.elc
|
/usr/share/emacs/%{version}/lisp/vc-mcvs.elc
|
||||||
|
/usr/share/emacs/%{version}/lisp/vc-mtn.elc
|
||||||
/usr/share/emacs/%{version}/lisp/vc-rcs.elc
|
/usr/share/emacs/%{version}/lisp/vc-rcs.elc
|
||||||
/usr/share/emacs/%{version}/lisp/vc-sccs.elc
|
/usr/share/emacs/%{version}/lisp/vc-sccs.elc
|
||||||
/usr/share/emacs/%{version}/lisp/vc-svn.elc
|
/usr/share/emacs/%{version}/lisp/vc-svn.elc
|
||||||
@ -2529,7 +2549,6 @@ done
|
|||||||
/usr/share/emacs/%{version}/lisp/erc/erc-menu.el.gz
|
/usr/share/emacs/%{version}/lisp/erc/erc-menu.el.gz
|
||||||
/usr/share/emacs/%{version}/lisp/erc/erc-netsplit.el.gz
|
/usr/share/emacs/%{version}/lisp/erc/erc-netsplit.el.gz
|
||||||
/usr/share/emacs/%{version}/lisp/erc/erc-networks.el.gz
|
/usr/share/emacs/%{version}/lisp/erc/erc-networks.el.gz
|
||||||
/usr/share/emacs/%{version}/lisp/erc/erc-nicklist.el.gz
|
|
||||||
/usr/share/emacs/%{version}/lisp/erc/erc-notify.el.gz
|
/usr/share/emacs/%{version}/lisp/erc/erc-notify.el.gz
|
||||||
/usr/share/emacs/%{version}/lisp/erc/erc-page.el.gz
|
/usr/share/emacs/%{version}/lisp/erc/erc-page.el.gz
|
||||||
/usr/share/emacs/%{version}/lisp/erc/erc-pcomplete.el.gz
|
/usr/share/emacs/%{version}/lisp/erc/erc-pcomplete.el.gz
|
||||||
@ -2913,6 +2932,7 @@ done
|
|||||||
/usr/share/emacs/%{version}/lisp/net/rcompile.el.gz
|
/usr/share/emacs/%{version}/lisp/net/rcompile.el.gz
|
||||||
/usr/share/emacs/%{version}/lisp/net/rlogin.el.gz
|
/usr/share/emacs/%{version}/lisp/net/rlogin.el.gz
|
||||||
/usr/share/emacs/%{version}/lisp/net/snmp-mode.el.gz
|
/usr/share/emacs/%{version}/lisp/net/snmp-mode.el.gz
|
||||||
|
/usr/share/emacs/%{version}/lisp/net/socks.el.gz
|
||||||
/usr/share/emacs/%{version}/lisp/net/telnet.el.gz
|
/usr/share/emacs/%{version}/lisp/net/telnet.el.gz
|
||||||
/usr/share/emacs/%{version}/lisp/net/tls.el.gz
|
/usr/share/emacs/%{version}/lisp/net/tls.el.gz
|
||||||
/usr/share/emacs/%{version}/lisp/net/tramp-ftp.el.gz
|
/usr/share/emacs/%{version}/lisp/net/tramp-ftp.el.gz
|
||||||
@ -3074,6 +3094,8 @@ done
|
|||||||
/usr/share/emacs/%{version}/lisp/progmodes/simula.el.gz
|
/usr/share/emacs/%{version}/lisp/progmodes/simula.el.gz
|
||||||
/usr/share/emacs/%{version}/lisp/progmodes/sql.el.gz
|
/usr/share/emacs/%{version}/lisp/progmodes/sql.el.gz
|
||||||
/usr/share/emacs/%{version}/lisp/progmodes/tcl.el.gz
|
/usr/share/emacs/%{version}/lisp/progmodes/tcl.el.gz
|
||||||
|
/usr/share/emacs/%{version}/lisp/progmodes/vera-mode.el.gz
|
||||||
|
/usr/share/emacs/%{version}/lisp/progmodes/verilog-mode.el.gz
|
||||||
/usr/share/emacs/%{version}/lisp/progmodes/vhdl-mode.el.gz
|
/usr/share/emacs/%{version}/lisp/progmodes/vhdl-mode.el.gz
|
||||||
/usr/share/emacs/%{version}/lisp/progmodes/which-func.el.gz
|
/usr/share/emacs/%{version}/lisp/progmodes/which-func.el.gz
|
||||||
/usr/share/emacs/%{version}/lisp/progmodes/xscheme.el.gz
|
/usr/share/emacs/%{version}/lisp/progmodes/xscheme.el.gz
|
||||||
@ -3132,7 +3154,9 @@ done
|
|||||||
/usr/share/emacs/%{version}/lisp/textmodes/artist.el.gz
|
/usr/share/emacs/%{version}/lisp/textmodes/artist.el.gz
|
||||||
/usr/share/emacs/%{version}/lisp/textmodes/bib-mode.el.gz
|
/usr/share/emacs/%{version}/lisp/textmodes/bib-mode.el.gz
|
||||||
/usr/share/emacs/%{version}/lisp/textmodes/bibtex.el.gz
|
/usr/share/emacs/%{version}/lisp/textmodes/bibtex.el.gz
|
||||||
|
/usr/share/emacs/%{version}/lisp/textmodes/bibtex-style.el.gz
|
||||||
/usr/share/emacs/%{version}/lisp/textmodes/conf-mode.el.gz
|
/usr/share/emacs/%{version}/lisp/textmodes/conf-mode.el.gz
|
||||||
|
/usr/share/emacs/%{version}/lisp/textmodes/css-mode.el.gz
|
||||||
/usr/share/emacs/%{version}/lisp/textmodes/dns-mode.el.gz
|
/usr/share/emacs/%{version}/lisp/textmodes/dns-mode.el.gz
|
||||||
/usr/share/emacs/%{version}/lisp/textmodes/enriched.el.gz
|
/usr/share/emacs/%{version}/lisp/textmodes/enriched.el.gz
|
||||||
/usr/share/emacs/%{version}/lisp/textmodes/fill.el.gz
|
/usr/share/emacs/%{version}/lisp/textmodes/fill.el.gz
|
||||||
@ -3215,9 +3239,13 @@ done
|
|||||||
/usr/share/emacs/%{version}/lisp/url/vc-dav.el.gz
|
/usr/share/emacs/%{version}/lisp/url/vc-dav.el.gz
|
||||||
/usr/share/emacs/%{version}/lisp/userlock.el.gz
|
/usr/share/emacs/%{version}/lisp/userlock.el.gz
|
||||||
/usr/share/emacs/%{version}/lisp/vc-arch.el.gz
|
/usr/share/emacs/%{version}/lisp/vc-arch.el.gz
|
||||||
|
/usr/share/emacs/%{version}/lisp/vc-bzr.el.gz
|
||||||
/usr/share/emacs/%{version}/lisp/vc-cvs.el.gz
|
/usr/share/emacs/%{version}/lisp/vc-cvs.el.gz
|
||||||
|
/usr/share/emacs/%{version}/lisp/vc-git.el.gz
|
||||||
|
/usr/share/emacs/%{version}/lisp/vc-hg.el.gz
|
||||||
/usr/share/emacs/%{version}/lisp/vc-hooks.el.gz
|
/usr/share/emacs/%{version}/lisp/vc-hooks.el.gz
|
||||||
/usr/share/emacs/%{version}/lisp/vc-mcvs.el.gz
|
/usr/share/emacs/%{version}/lisp/vc-mcvs.el.gz
|
||||||
|
/usr/share/emacs/%{version}/lisp/vc-mtn.el.gz
|
||||||
/usr/share/emacs/%{version}/lisp/vc-rcs.el.gz
|
/usr/share/emacs/%{version}/lisp/vc-rcs.el.gz
|
||||||
/usr/share/emacs/%{version}/lisp/vc-sccs.el.gz
|
/usr/share/emacs/%{version}/lisp/vc-sccs.el.gz
|
||||||
/usr/share/emacs/%{version}/lisp/vc-svn.el.gz
|
/usr/share/emacs/%{version}/lisp/vc-svn.el.gz
|
||||||
@ -3244,55 +3272,120 @@ done
|
|||||||
/usr/share/emacs/%{version}/lisp/xt-mouse.el.gz
|
/usr/share/emacs/%{version}/lisp/xt-mouse.el.gz
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Fri Jan 04 2008 - werner@suse.de
|
* Mon Mar 31 2008 werner@suse.de
|
||||||
|
- Update to emacs version 22.1
|
||||||
|
* Relicense all FSF files to GPLv3 or later.
|
||||||
|
* COPYING, info/COPYING: Switch to GPLv3.
|
||||||
|
* `describe-project' is renamed to `describe-gnu-project'.
|
||||||
|
* `view-todo' is renamed to `view-emacs-todo'.
|
||||||
|
* `find-name-dired' now uses -iname rather than -name
|
||||||
|
for case-insensitive filesystems.
|
||||||
|
* In Image mode, whenever the displayed image is wider and/or higher
|
||||||
|
than the window, the usual keys for moving the cursor cause the image
|
||||||
|
to be scrolled horizontally or vertically instead.
|
||||||
|
* Emacs can use stock icons in the tool bar when compiled with Gtk+.
|
||||||
|
However, this feature is disabled by default. To enable it, put
|
||||||
|
(setq icon-map-list '(x-gtk-stock-map))
|
||||||
|
in your .emacs or some other startup file. For more information, see
|
||||||
|
the documentation for the two variables icon-map-list and x-gtk-stock-map.
|
||||||
|
* Scrollbars follow the system theme on Windows XP and later.
|
||||||
|
Windows XP introduced themed scrollbars, but applications have to take
|
||||||
|
special steps to use them. Emacs now has the appropriate resources linked
|
||||||
|
in to make it use the scrollbars from the system theme.
|
||||||
|
* `bad-packages-alist' will warn about external packages that are known
|
||||||
|
to cause problems in this version of Emacs.
|
||||||
|
* The values of `dired-recursive-deletes' and `dired-recursive-copies'
|
||||||
|
have been changed to `top'. This means that the user is asked once,
|
||||||
|
before deleting/copying the indicated directory recursively.
|
||||||
|
* `browse-url-emacs' loads a URL into an Emacs buffer. Handy for *.el URLs.
|
||||||
|
* The command gdba has been removed as gdb works now for those cases where it
|
||||||
|
was needed. In text command mode, if you have problems before execution has
|
||||||
|
started, use M-x gud-gdb.
|
||||||
|
* desktop.el now detects conflicting uses of the desktop file.
|
||||||
|
* Compilation mode now correctly respects the value of
|
||||||
|
`compilation-scroll-output' between invocations.
|
||||||
|
* `font-lock-comment-face' no longer differs from the default on
|
||||||
|
displays with fewer than 16 colors and dark background (e.g. older
|
||||||
|
xterms and the Linux console).
|
||||||
|
* New Modes and Packages in Emacs 22.2
|
||||||
|
- bibtex-style-mode helps you write BibTeX's *.bst files.
|
||||||
|
- The new package css-mode.el provides a major mode for editing CSS files.
|
||||||
|
- The new package vera-mode.el provides a major mode for editing Vera files.
|
||||||
|
- The new package verilog-mode.el provides a major mode for editing Verilog files.
|
||||||
|
- The new package socks.el implements the SOCKS v5 protocol.
|
||||||
|
* VC
|
||||||
|
- VC backends can provide completion of revision names.
|
||||||
|
- VC backends can provide extra menu entries to the "Version Control" menu.
|
||||||
|
- VC has some support for Mercurial (Hg).
|
||||||
|
- VC has some support for Monotone (Mtn).
|
||||||
|
- VC has some support for Bazaar (Bzr).
|
||||||
|
- VC has some support for Git.
|
||||||
|
* Incompatible Lisp Changes in Emacs 22.2
|
||||||
|
- shell.el no longer defines the aliases `dirtrack-toggle' and
|
||||||
|
`dirtrack-mode' for `shell-dirtrack-mode'.
|
||||||
|
* Lisp Changes in Emacs 22.2.
|
||||||
|
- Frame-local variables are deprecated and are slated for removal.
|
||||||
|
- The function invisible-p returns non-nil if the character
|
||||||
|
after a specified position is invisible.
|
||||||
|
- inhibit-modification-hooks is bound to t while running modification hooks.
|
||||||
|
- New function `window-full-width-p' returns t if a window is as wide
|
||||||
|
as its frame.
|
||||||
|
- The new function `image-refresh' refreshes all images associated
|
||||||
|
with a given image specification.
|
||||||
|
- The new function `combine-and-quote-strings' concatenates a list of strings
|
||||||
|
using a specified separator.
|
||||||
|
- The new function `split-string-and-unquote' performs the inverse operation to
|
||||||
|
`combine-and-quote-strings', i.e. splits a single string into a list
|
||||||
|
of strings, undoing any quoting added by `combine-and-quote-strings'.
|
||||||
|
* Fri Jan 04 2008 werner@suse.de
|
||||||
- Fix app-defaults files (bug #351537)
|
- Fix app-defaults files (bug #351537)
|
||||||
* Thu Dec 20 2007 - werner@suse.de
|
* Thu Dec 20 2007 werner@suse.de
|
||||||
- Don't forget the arguments for the wrapper script
|
- Don't forget the arguments for the wrapper script
|
||||||
* Thu Dec 20 2007 - werner@suse.de
|
* Thu Dec 20 2007 werner@suse.de
|
||||||
- Suppress startup message in case of starting iconic (bug #342385)
|
- Suppress startup message in case of starting iconic (bug #342385)
|
||||||
* Tue Dec 18 2007 - werner@suse.de
|
* Tue Dec 18 2007 werner@suse.de
|
||||||
- Add workaround for conflict between GTK/GDK and KWin by using
|
- Add workaround for conflict between GTK/GDK and KWin by using
|
||||||
Athena/Xaw3d toolkit in case of running within a KDE session.
|
Athena/Xaw3d toolkit in case of running within a KDE session.
|
||||||
this fix the bug #342385 as well as bug #345669
|
this fix the bug #342385 as well as bug #345669
|
||||||
* Sun Dec 09 2007 - schwab@suse.de
|
* Sun Dec 09 2007 schwab@suse.de
|
||||||
- Install all icon sizes.
|
- Install all icon sizes.
|
||||||
* Thu Nov 22 2007 - schwab@suse.de
|
* Thu Nov 22 2007 schwab@suse.de
|
||||||
- Fix buffer overflow in format [#342158].
|
- Fix buffer overflow in format [#342158].
|
||||||
- Remove obsolete patches.
|
- Remove obsolete patches.
|
||||||
* Mon Nov 05 2007 - werner@suse.de
|
* Mon Nov 05 2007 werner@suse.de
|
||||||
- Fix insufficient safe mode checks (bug #339033, CVE-2007-5795)
|
- Fix insufficient safe mode checks (bug #339033, CVE-2007-5795)
|
||||||
* Fri Sep 07 2007 - schwab@suse.de
|
* Fri Sep 07 2007 schwab@suse.de
|
||||||
- Remove obsolete xterm.el.
|
- Remove obsolete xterm.el.
|
||||||
* Mon Jul 23 2007 - aj@suse.de
|
* Mon Jul 23 2007 aj@suse.de
|
||||||
- Revert last change, it seems that sendmail is somehow used.
|
- Revert last change, it seems that sendmail is somehow used.
|
||||||
* Sun Jul 22 2007 - aj@suse.de
|
* Sun Jul 22 2007 aj@suse.de
|
||||||
- sendmail is not needed while building, remove it from
|
- sendmail is not needed while building, remove it from
|
||||||
BuildRequires.
|
BuildRequires.
|
||||||
* Thu Jul 05 2007 - schwab@suse.de
|
* Thu Jul 05 2007 schwab@suse.de
|
||||||
- Replace obsolete icon.
|
- Replace obsolete icon.
|
||||||
* Thu Jul 05 2007 - coolo@suse.de
|
* Thu Jul 05 2007 coolo@suse.de
|
||||||
- fix name of rpmlintrc
|
- fix name of rpmlintrc
|
||||||
- put desktop file and icon into the package
|
- put desktop file and icon into the package
|
||||||
* Mon Jun 18 2007 - werner@suse.de
|
* Mon Jun 18 2007 werner@suse.de
|
||||||
- Use the app-default file macro, avoid empty MALLOC_CHECK_
|
- Use the app-default file macro, avoid empty MALLOC_CHECK_
|
||||||
* Mon Jun 04 2007 - werner@suse.de
|
* Mon Jun 04 2007 werner@suse.de
|
||||||
- Update ot final emacs version 22.1
|
- Update ot final emacs version 22.1
|
||||||
* Mon Jun 04 2007 - werner@suse.de
|
* Mon Jun 04 2007 werner@suse.de
|
||||||
- Make UTF-8 default if request within X window text selections
|
- Make UTF-8 default if request within X window text selections
|
||||||
* Fri Jun 01 2007 - dmueller@suse.de
|
* Fri Jun 01 2007 dmueller@suse.de
|
||||||
- fix buildrequires
|
- fix buildrequires
|
||||||
* Fri May 25 2007 - schwab@suse.de
|
* Fri May 25 2007 schwab@suse.de
|
||||||
- Fix the broken configure script instead.
|
- Fix the broken configure script instead.
|
||||||
* Thu May 24 2007 - werner@suse.de
|
* Thu May 24 2007 werner@suse.de
|
||||||
- Correct target cpu to become conform with RPM_OPT_FLAGS
|
- Correct target cpu to become conform with RPM_OPT_FLAGS
|
||||||
- Add Workaround for bug in autoconf 2.61a
|
- Add Workaround for bug in autoconf 2.61a
|
||||||
- No X11 no sound
|
- No X11 no sound
|
||||||
* Tue May 22 2007 - schwab@suse.de
|
* Tue May 22 2007 schwab@suse.de
|
||||||
- Add alsa-devel to BuildRequires.
|
- Add alsa-devel to BuildRequires.
|
||||||
- Obsolete emacs-url Mule-UCS emacs-calc erc elispman elisp-manual
|
- Obsolete emacs-url Mule-UCS emacs-calc erc elispman elisp-manual
|
||||||
elispint emacs-lisp-intro.
|
elispint emacs-lisp-intro.
|
||||||
- Update list of info files.
|
- Update list of info files.
|
||||||
* Tue May 22 2007 - werner@suse.de
|
* Tue May 22 2007 werner@suse.de
|
||||||
- Switch over to emacs 22.0.99 which used UFT-8 native
|
- Switch over to emacs 22.0.99 which used UFT-8 native
|
||||||
- Adopt the patches if not already applied
|
- Adopt the patches if not already applied
|
||||||
- Skip cweb and web mode due not compatible to new emacs and no
|
- Skip cweb and web mode due not compatible to new emacs and no
|
||||||
@ -3303,104 +3396,104 @@ done
|
|||||||
- Adopt site-start.el to emacs 22.0.99
|
- Adopt site-start.el to emacs 22.0.99
|
||||||
- Help s390x machine defines to win over common defines
|
- Help s390x machine defines to win over common defines
|
||||||
- Avoid trouble with leim and implicit make dependencies on tmpfs
|
- Avoid trouble with leim and implicit make dependencies on tmpfs
|
||||||
* Tue May 15 2007 - werner@suse.de
|
* Tue May 15 2007 werner@suse.de
|
||||||
- Use stdarg(3) instead of guessing argument pointers (bug #273211)
|
- Use stdarg(3) instead of guessing argument pointers (bug #273211)
|
||||||
* Thu Mar 29 2007 - aj@suse.de
|
* Thu Mar 29 2007 aj@suse.de
|
||||||
- Add ncurses-devel to BuildRequires.
|
- Add ncurses-devel to BuildRequires.
|
||||||
* Fri Jan 12 2007 - werner@suse.de
|
* Fri Jan 12 2007 werner@suse.de
|
||||||
- Make .gnu-emacs writable for the user (#229883)
|
- Make .gnu-emacs writable for the user (#229883)
|
||||||
* Fri Jan 12 2007 - werner@suse.de
|
* Fri Jan 12 2007 werner@suse.de
|
||||||
- Make emacs find its app-default file (bug #234026)
|
- Make emacs find its app-default file (bug #234026)
|
||||||
* Thu Dec 14 2006 - schwab@suse.de
|
* Thu Dec 14 2006 schwab@suse.de
|
||||||
- Fix patterns for auto-mode-list additions.
|
- Fix patterns for auto-mode-list additions.
|
||||||
* Sat Nov 11 2006 - olh@suse.de
|
* Sat Nov 11 2006 olh@suse.de
|
||||||
- remove ppc/ppc64 ld.scripts
|
- remove ppc/ppc64 ld.scripts
|
||||||
fix elf handling on powerpc64
|
fix elf handling on powerpc64
|
||||||
* Thu Aug 03 2006 - werner@suse.de
|
* Thu Aug 03 2006 werner@suse.de
|
||||||
- Make last change depending on X11 release version
|
- Make last change depending on X11 release version
|
||||||
- Do not use not initialized variables
|
- Do not use not initialized variables
|
||||||
* Wed Aug 02 2006 - aj@suse.de
|
* Wed Aug 02 2006 aj@suse.de
|
||||||
- Fix app-defaults path for X11 R7.
|
- Fix app-defaults path for X11 R7.
|
||||||
* Fri Jun 30 2006 - werner@suse.de
|
* Fri Jun 30 2006 werner@suse.de
|
||||||
- Update the ~/.gnu-emacs to newer auctex version
|
- Update the ~/.gnu-emacs to newer auctex version
|
||||||
* Mon Jun 19 2006 - dmueller@suse.de
|
* Mon Jun 19 2006 dmueller@suse.de
|
||||||
- revert last change by package maintainer's request
|
- revert last change by package maintainer's request
|
||||||
* Thu Jun 15 2006 - dmueller@suse.de
|
* Thu Jun 15 2006 dmueller@suse.de
|
||||||
- build parallel
|
- build parallel
|
||||||
* Fri Apr 21 2006 - werner@suse.de
|
* Fri Apr 21 2006 werner@suse.de
|
||||||
- Re-enable the circular dependcies of emacs and emacs_program
|
- Re-enable the circular dependcies of emacs and emacs_program
|
||||||
- Handle emacs-x11 as an enhancement for xorg-x11-libs
|
- Handle emacs-x11 as an enhancement for xorg-x11-libs
|
||||||
* Wed Jan 25 2006 - mls@suse.de
|
* Wed Jan 25 2006 mls@suse.de
|
||||||
- converted neededforbuild to BuildRequires
|
- converted neededforbuild to BuildRequires
|
||||||
* Wed Jan 11 2006 - schwab@suse.de
|
* Wed Jan 11 2006 schwab@suse.de
|
||||||
- Don't strip binaries.
|
- Don't strip binaries.
|
||||||
* Thu Oct 20 2005 - werner@suse.de
|
* Thu Oct 20 2005 werner@suse.de
|
||||||
- ~/.gnu-emacs: change order of sort functions date and subject,
|
- ~/.gnu-emacs: change order of sort functions date and subject,
|
||||||
add sort function number (bug #116279)
|
add sort function number (bug #116279)
|
||||||
* Mon Oct 10 2005 - werner@suse.de
|
* Mon Oct 10 2005 werner@suse.de
|
||||||
- Adapt ppc linker script to new ppc binutils
|
- Adapt ppc linker script to new ppc binutils
|
||||||
* Mon Sep 26 2005 - ro@suse.de
|
* Mon Sep 26 2005 ro@suse.de
|
||||||
- list dot.gnu-emacs as source
|
- list dot.gnu-emacs as source
|
||||||
* Mon Sep 26 2005 - cthiel@suse.de
|
* Mon Sep 26 2005 cthiel@suse.de
|
||||||
- Updated php-mode to 1.2.0
|
- Updated php-mode to 1.2.0
|
||||||
* Fri Apr 15 2005 - werner@suse.de
|
* Fri Apr 15 2005 werner@suse.de
|
||||||
- Get emacs back on ppc
|
- Get emacs back on ppc
|
||||||
- Block input on architectures which do not use system malloc
|
- Block input on architectures which do not use system malloc
|
||||||
- Fix stupid multibyte bug in Fformat
|
- Fix stupid multibyte bug in Fformat
|
||||||
- Avoid XIM status error of the xft
|
- Avoid XIM status error of the xft
|
||||||
* Thu Apr 14 2005 - werner@suse.de
|
* Thu Apr 14 2005 werner@suse.de
|
||||||
- More on gcc4 warnings
|
- More on gcc4 warnings
|
||||||
- Break circular dependings
|
- Break circular dependings
|
||||||
* Fri Apr 08 2005 - uli@suse.de
|
* Fri Apr 08 2005 uli@suse.de
|
||||||
- squelch GCC4 sentinel warnings
|
- squelch GCC4 sentinel warnings
|
||||||
* Fri Feb 04 2005 - schwab@suse.de
|
* Sat Feb 05 2005 schwab@suse.de
|
||||||
- Fix format string bug in movemail.
|
- Fix format string bug in movemail.
|
||||||
* Fri Feb 04 2005 - werner@suse.de
|
* Fri Feb 04 2005 werner@suse.de
|
||||||
- Security fix for movemail applied (bug #50237)
|
- Security fix for movemail applied (bug #50237)
|
||||||
* Mon Dec 20 2004 - werner@suse.de
|
* Mon Dec 20 2004 werner@suse.de
|
||||||
- Enable leim, seems to be required even with autodetection.
|
- Enable leim, seems to be required even with autodetection.
|
||||||
* Wed Nov 17 2004 - werner@suse.de
|
* Wed Nov 17 2004 werner@suse.de
|
||||||
- Add emacs.png pixmap to file list
|
- Add emacs.png pixmap to file list
|
||||||
* Wed Oct 20 2004 - werner@suse.de
|
* Wed Oct 20 2004 werner@suse.de
|
||||||
- Remove file conflict between emacs base and x11 package
|
- Remove file conflict between emacs base and x11 package
|
||||||
* Wed Oct 13 2004 - werner@suse.de
|
* Wed Oct 13 2004 werner@suse.de
|
||||||
- Add workaround for XKey modifier detection even if the keys
|
- Add workaround for XKey modifier detection even if the keys
|
||||||
are not marked as modifiers (bug #47192)
|
are not marked as modifiers (bug #47192)
|
||||||
* Thu Sep 16 2004 - mmj@suse.de
|
* Fri Sep 17 2004 mmj@suse.de
|
||||||
- Add php-mode-1.1 [#40286]
|
- Add php-mode-1.1 [#40286]
|
||||||
* Mon Sep 13 2004 - werner@suse.de
|
* Mon Sep 13 2004 werner@suse.de
|
||||||
- Do not overwrite emacs binary with a sym link
|
- Do not overwrite emacs binary with a sym link
|
||||||
- Make install-info work during build
|
- Make install-info work during build
|
||||||
* Thu Sep 09 2004 - werner@suse.de
|
* Thu Sep 09 2004 werner@suse.de
|
||||||
- Make emacs-x11/emacs-nox user save (bug #41961)
|
- Make emacs-x11/emacs-nox user save (bug #41961)
|
||||||
* Thu Aug 12 2004 - coolo@suse.de
|
* Thu Aug 12 2004 coolo@suse.de
|
||||||
- removed postfix again and hard code the sendmail-program
|
- removed postfix again and hard code the sendmail-program
|
||||||
* Wed Jun 30 2004 - schwab@suse.de
|
* Wed Jun 30 2004 schwab@suse.de
|
||||||
- Add postfix to neededforbuild to get correct sendmail-program.
|
- Add postfix to neededforbuild to get correct sendmail-program.
|
||||||
* Tue Jun 08 2004 - ro@suse.de
|
* Tue Jun 08 2004 ro@suse.de
|
||||||
- use -fno-strict-aliasing
|
- use -fno-strict-aliasing
|
||||||
- added returns to some non-void functions (most unreached)
|
- added returns to some non-void functions (most unreached)
|
||||||
* Fri Mar 19 2004 - werner@suse.de
|
* Fri Mar 19 2004 werner@suse.de
|
||||||
- Put the difference of timecard-mode.el to its original into
|
- Put the difference of timecard-mode.el to its original into
|
||||||
a comment to be able to satisfy the stupid no.orig rule.
|
a comment to be able to satisfy the stupid no.orig rule.
|
||||||
* Mon Feb 02 2004 - kukuk@suse.de
|
* Mon Feb 02 2004 kukuk@suse.de
|
||||||
- Cleanup neededforbuild
|
- Cleanup neededforbuild
|
||||||
* Tue Jan 20 2004 - meissner@suse.de
|
* Tue Jan 20 2004 meissner@suse.de
|
||||||
- Fixed ppc(32) linker script.
|
- Fixed ppc(32) linker script.
|
||||||
* Sat Jan 10 2004 - adrian@suse.de
|
* Sat Jan 10 2004 adrian@suse.de
|
||||||
- build as user
|
- build as user
|
||||||
* Sat Aug 16 2003 - adrian@suse.de
|
* Sat Aug 16 2003 adrian@suse.de
|
||||||
- install desktop file from kappfinder
|
- install desktop file from kappfinder
|
||||||
* Thu Jul 24 2003 - werner@suse.de
|
* Thu Jul 24 2003 werner@suse.de
|
||||||
- Fix bug #27173: map ispell coding latin1 to latin9 if the
|
- Fix bug #27173: map ispell coding latin1 to latin9 if the
|
||||||
buffer coding is latin9.
|
buffer coding is latin9.
|
||||||
* Wed Jul 23 2003 - werner@suse.de
|
* Wed Jul 23 2003 werner@suse.de
|
||||||
- Update to 21.3
|
- Update to 21.3
|
||||||
- Port patches if required
|
- Port patches if required
|
||||||
- Fix ps-print for ISO-8859-15 aka latin9
|
- Fix ps-print for ISO-8859-15 aka latin9
|
||||||
* Fri Jun 20 2003 - ro@suse.de
|
* Fri Jun 20 2003 ro@suse.de
|
||||||
- remove unpackaged files from buildroot
|
- remove unpackaged files from buildroot
|
||||||
* Fri May 16 2003 - mfabian@suse.de
|
* Fri May 16 2003 mfabian@suse.de
|
||||||
- split off locale.el from func-keys.el in order to get correct
|
- split off locale.el from func-keys.el in order to get correct
|
||||||
i18n setup in terminals and not only under X11.
|
i18n setup in terminals and not only under X11.
|
||||||
In case of terminals, func-keys.el was loaded after
|
In case of terminals, func-keys.el was loaded after
|
||||||
@ -3408,83 +3501,83 @@ done
|
|||||||
useless. Load the new locale.el at the end of site-start.el
|
useless. Load the new locale.el at the end of site-start.el
|
||||||
because Mule-UCS apparently messes up the
|
because Mule-UCS apparently messes up the
|
||||||
terminal-coding-system again.
|
terminal-coding-system again.
|
||||||
* Thu Apr 24 2003 - ro@suse.de
|
* Thu Apr 24 2003 ro@suse.de
|
||||||
- fix install_info --delete call and move from preun to postun
|
- fix install_info --delete call and move from preun to postun
|
||||||
* Mon Mar 03 2003 - schwab@suse.de
|
* Tue Mar 04 2003 schwab@suse.de
|
||||||
- Use %%install_info.
|
- Use %%install_info.
|
||||||
* Thu Feb 27 2003 - werner@suse.de
|
* Thu Feb 27 2003 werner@suse.de
|
||||||
- Encodings: do it the same as for xemacs
|
- Encodings: do it the same as for xemacs
|
||||||
* Wed Feb 26 2003 - werner@suse.de
|
* Wed Feb 26 2003 werner@suse.de
|
||||||
- Fix bug #24299: Be able to use UTF-8 locale
|
- Fix bug #24299: Be able to use UTF-8 locale
|
||||||
* Thu Jan 02 2003 - bg@suse.de
|
* Thu Jan 02 2003 bg@suse.de
|
||||||
- Add support for hppa
|
- Add support for hppa
|
||||||
- Fix alignment bug in pure_alloc with pure_float
|
- Fix alignment bug in pure_alloc with pure_float
|
||||||
* Thu Dec 19 2002 - werner@suse.de
|
* Thu Dec 19 2002 werner@suse.de
|
||||||
- Fix trouble with ansi-term mode (bug #22431)
|
- Fix trouble with ansi-term mode (bug #22431)
|
||||||
* Wed Dec 18 2002 - werner@suse.de
|
* Wed Dec 18 2002 werner@suse.de
|
||||||
- Make fill-column in ~/.gnu-emacs work for emacs 21.x
|
- Make fill-column in ~/.gnu-emacs work for emacs 21.x
|
||||||
* Wed Nov 20 2002 - schwab@suse.de
|
* Wed Nov 20 2002 schwab@suse.de
|
||||||
- Add AC_CONFIG_LIBOBJ_DIR.
|
- Add AC_CONFIG_LIBOBJ_DIR.
|
||||||
* Sat Oct 19 2002 - schwab@suse.de
|
* Sun Oct 20 2002 schwab@suse.de
|
||||||
- Use BuildRoot and make it build non-privileged.
|
- Use BuildRoot and make it build non-privileged.
|
||||||
- Use predefined targets in lisp/Makefile.
|
- Use predefined targets in lisp/Makefile.
|
||||||
* Thu Oct 17 2002 - werner@suse.de
|
* Thu Oct 17 2002 werner@suse.de
|
||||||
- Reintegrate ger-keys into site lisp
|
- Reintegrate ger-keys into site lisp
|
||||||
- Remove references from .gnu-emacs and site-start of removed files
|
- Remove references from .gnu-emacs and site-start of removed files
|
||||||
* Wed Oct 16 2002 - schwab@suse.de
|
* Wed Oct 16 2002 schwab@suse.de
|
||||||
- Remove all global key mappings from web-mode.el and cweb.el.
|
- Remove all global key mappings from web-mode.el and cweb.el.
|
||||||
- Remove obsolete site-lisp files.
|
- Remove obsolete site-lisp files.
|
||||||
* Wed Sep 11 2002 - kukuk@suse.de
|
* Wed Sep 11 2002 kukuk@suse.de
|
||||||
- Provide splitaliasing for updating from old ge_exec
|
- Provide splitaliasing for updating from old ge_exec
|
||||||
* Tue Sep 10 2002 - adrian@suse.de
|
* Wed Sep 11 2002 adrian@suse.de
|
||||||
- remove obsoleting of itself
|
- remove obsoleting of itself
|
||||||
* Fri Aug 16 2002 - schwab@suse.de
|
* Sat Aug 17 2002 schwab@suse.de
|
||||||
- Ported to PPC64.
|
- Ported to PPC64.
|
||||||
* Thu Aug 15 2002 - ro@suse.de
|
* Thu Aug 15 2002 ro@suse.de
|
||||||
- fixed typo in specfile
|
- fixed typo in specfile
|
||||||
* Thu Aug 15 2002 - werner@suse.de
|
* Thu Aug 15 2002 werner@suse.de
|
||||||
- Add pre-require fileutils for emacs-x11/nox (bug #17830/#17831)
|
- Add pre-require fileutils for emacs-x11/nox (bug #17830/#17831)
|
||||||
* Fri Aug 09 2002 - ro@suse.de
|
* Fri Aug 09 2002 ro@suse.de
|
||||||
- dont include /usr/share/info/dir in filelist
|
- dont include /usr/share/info/dir in filelist
|
||||||
* Thu Aug 08 2002 - werner@suse.de
|
* Thu Aug 08 2002 werner@suse.de
|
||||||
- Update to 21.2
|
- Update to 21.2
|
||||||
* Fri Jul 26 2002 - schwab@suse.de
|
* Fri Jul 26 2002 schwab@suse.de
|
||||||
- Remove obsolete bindings from term/func-keys.el.
|
- Remove obsolete bindings from term/func-keys.el.
|
||||||
* Tue May 21 2002 - coolo@suse.de
|
* Tue May 21 2002 coolo@suse.de
|
||||||
- fixing the patch for s390x
|
- fixing the patch for s390x
|
||||||
* Fri May 17 2002 - coolo@suse.de
|
* Fri May 17 2002 coolo@suse.de
|
||||||
- extending s390x patch to handle lib64
|
- extending s390x patch to handle lib64
|
||||||
* Wed Apr 24 2002 - schwab@suse.de
|
* Wed Apr 24 2002 schwab@suse.de
|
||||||
- Fix last change.
|
- Fix last change.
|
||||||
* Wed Apr 24 2002 - aj@suse.de
|
* Wed Apr 24 2002 aj@suse.de
|
||||||
- Handle lib64 in a cleaner way.
|
- Handle lib64 in a cleaner way.
|
||||||
* Wed Apr 24 2002 - aj@suse.de
|
* Wed Apr 24 2002 aj@suse.de
|
||||||
- Fix X11 build.
|
- Fix X11 build.
|
||||||
* Mon Apr 22 2002 - aj@suse.de
|
* Mon Apr 22 2002 aj@suse.de
|
||||||
- Add support for x86-64.
|
- Add support for x86-64.
|
||||||
* Mon Apr 01 2002 - schwab@suse.de
|
* Mon Apr 01 2002 schwab@suse.de
|
||||||
- Fix configure script.
|
- Fix configure script.
|
||||||
- Remove obsolete Xaw3d changes.
|
- Remove obsolete Xaw3d changes.
|
||||||
* Fri Mar 08 2002 - kukuk@suse.de
|
* Fri Mar 08 2002 kukuk@suse.de
|
||||||
- Add /usr/share/emacs/site-lisp to filelist
|
- Add /usr/share/emacs/site-lisp to filelist
|
||||||
* Thu Feb 28 2002 - werner@suse.de
|
* Thu Feb 28 2002 werner@suse.de
|
||||||
- Switch from gnus-local-organization to message-user-organization
|
- Switch from gnus-local-organization to message-user-organization
|
||||||
in site-start.el because previous one is obsolete.
|
in site-start.el because previous one is obsolete.
|
||||||
* Fri Feb 22 2002 - werner@suse.de
|
* Fri Feb 22 2002 werner@suse.de
|
||||||
- Correct lisp macro description for line/screen mouse wheel
|
- Correct lisp macro description for line/screen mouse wheel
|
||||||
scrolling
|
scrolling
|
||||||
* Fri Feb 22 2002 - werner@suse.de
|
* Fri Feb 22 2002 werner@suse.de
|
||||||
- Fix initializing of fontifying of Auc-TeX buffers
|
- Fix initializing of fontifying of Auc-TeX buffers
|
||||||
* Fri Feb 01 2002 - ro@suse.de
|
* Fri Feb 01 2002 ro@suse.de
|
||||||
- changed neededforbuild <libpng> to <libpng-devel-packages>
|
- changed neededforbuild <libpng> to <libpng-devel-packages>
|
||||||
* Thu Nov 08 2001 - werner@suse.de
|
* Thu Nov 08 2001 werner@suse.de
|
||||||
- Make it build on PPC
|
- Make it build on PPC
|
||||||
- Use original paren instead of stig-paren
|
- Use original paren instead of stig-paren
|
||||||
* Thu Nov 08 2001 - werner@suse.de
|
* Thu Nov 08 2001 werner@suse.de
|
||||||
- Update to Emacs 21.1
|
- Update to Emacs 21.1
|
||||||
- Remove obsolete stuff from site-lisp path
|
- Remove obsolete stuff from site-lisp path
|
||||||
- Port our patches to 21.1 if not already integrated
|
- Port our patches to 21.1 if not already integrated
|
||||||
* Mon Oct 15 2001 - mfabian@suse.de
|
* Mon Oct 15 2001 mfabian@suse.de
|
||||||
- add emacs-20.5-linespace-patch
|
- add emacs-20.5-linespace-patch
|
||||||
(adds the command-line option --line-space <number-of-pixels>
|
(adds the command-line option --line-space <number-of-pixels>
|
||||||
which can be used to increase the line spacing. Greatly
|
which can be used to increase the line spacing. Greatly
|
||||||
@ -3494,63 +3587,63 @@ done
|
|||||||
4.1 (AOI). Contains a fix for the CCL interpreter and
|
4.1 (AOI). Contains a fix for the CCL interpreter and
|
||||||
a fix for the problem of invalid post-read-conversion with
|
a fix for the problem of invalid post-read-conversion with
|
||||||
decode-coding-string(), both by Miyashita Hisashi.
|
decode-coding-string(), both by Miyashita Hisashi.
|
||||||
* Tue Sep 25 2001 - werner@suse.de
|
* Tue Sep 25 2001 werner@suse.de
|
||||||
- Use linker script of PowerPC to make it work
|
- Use linker script of PowerPC to make it work
|
||||||
* Mon Sep 24 2001 - werner@suse.de
|
* Mon Sep 24 2001 werner@suse.de
|
||||||
- For PowerPC a -Xlinker is required to mask -znocombreloc
|
- For PowerPC a -Xlinker is required to mask -znocombreloc
|
||||||
* Mon Sep 10 2001 - aj@suse.de
|
* Mon Sep 10 2001 aj@suse.de
|
||||||
- Remove extra space in LDFLAGS to allow building on PowerPC and
|
- Remove extra space in LDFLAGS to allow building on PowerPC and
|
||||||
alpha.
|
alpha.
|
||||||
* Wed Sep 05 2001 - werner@suse.de
|
* Wed Sep 05 2001 werner@suse.de
|
||||||
- FHS: /var/state/xemacs -> /var/lib/xemacs (bug #8678)
|
- FHS: /var/state/xemacs -> /var/lib/xemacs (bug #8678)
|
||||||
* Mon Sep 03 2001 - aj@suse.de
|
* Mon Sep 03 2001 aj@suse.de
|
||||||
- Don't sort relocation entries, otherwise dumping breaks.
|
- Don't sort relocation entries, otherwise dumping breaks.
|
||||||
* Thu Aug 02 2001 - werner@suse.de
|
* Thu Aug 02 2001 werner@suse.de
|
||||||
- Scroll up if button 5 aka wheel up is used
|
- Scroll up if button 5 aka wheel up is used
|
||||||
* Wed Jun 27 2001 - mfabian@suse.de
|
* Wed Jun 27 2001 mfabian@suse.de
|
||||||
- replace 6 Pixel fonts in app-defaults.Emacs by 7 Pixel fonts,
|
- replace 6 Pixel fonts in app-defaults.Emacs by 7 Pixel fonts,
|
||||||
because 7 Pixel fonts are usually available but 6 Pixel fonts
|
because 7 Pixel fonts are usually available but 6 Pixel fonts
|
||||||
are not.
|
are not.
|
||||||
* Wed Jun 13 2001 - schwab@suse.de
|
* Wed Jun 13 2001 schwab@suse.de
|
||||||
- Fix for new autoconf.
|
- Fix for new autoconf.
|
||||||
* Tue Jun 12 2001 - bk@suse.de
|
* Tue Jun 12 2001 bk@suse.de
|
||||||
- updated s390 config to 20.7 version and added support for s390x
|
- updated s390 config to 20.7 version and added support for s390x
|
||||||
* Tue May 08 2001 - werner@suse.de
|
* Tue May 08 2001 werner@suse.de
|
||||||
- Move [S-home] and [S-end] to [C-home] and [C-end] to
|
- Move [S-home] and [S-end] to [C-home] and [C-end] to
|
||||||
be more common with WIN XY and xemacs.
|
be more common with WIN XY and xemacs.
|
||||||
* Mon May 07 2001 - mfabian@suse.de
|
* Mon May 07 2001 mfabian@suse.de
|
||||||
- bzip2 sources
|
- bzip2 sources
|
||||||
* Fri Mar 30 2001 - werner@suse.de
|
* Fri Mar 30 2001 werner@suse.de
|
||||||
- Keybinding
|
- Keybinding
|
||||||
Change [home] from beginning-of-buffer to beginning-of-line
|
Change [home] from beginning-of-buffer to beginning-of-line
|
||||||
Change [end] from end-of-buffer to end-of-line
|
Change [end] from end-of-buffer to end-of-line
|
||||||
Add [S-home] for beginning-of-buffer
|
Add [S-home] for beginning-of-buffer
|
||||||
Add [S-end] for end-of-buffer
|
Add [S-end] for end-of-buffer
|
||||||
- Basic wheel mouse support
|
- Basic wheel mouse support
|
||||||
* Thu Mar 22 2001 - ro@suse.de
|
* Thu Mar 22 2001 ro@suse.de
|
||||||
- added split-aliases as provides
|
- added split-aliases as provides
|
||||||
* Wed Mar 14 2001 - werner@suse.de
|
* Wed Mar 14 2001 werner@suse.de
|
||||||
- Add post script to activate emacs-nox in the
|
- Add post script to activate emacs-nox in the
|
||||||
case of being the only emacs progy
|
case of being the only emacs progy
|
||||||
* Mon Mar 12 2001 - werner@suse.de
|
* Mon Mar 12 2001 werner@suse.de
|
||||||
- Make that configure knows about strerror/strsignal
|
- Make that configure knows about strerror/strsignal
|
||||||
- Split off two new packages emacs-x11 and emacs-nox
|
- Split off two new packages emacs-x11 and emacs-nox
|
||||||
with the emacs program only.
|
with the emacs program only.
|
||||||
* Tue Mar 06 2001 - werner@suse.de
|
* Tue Mar 06 2001 werner@suse.de
|
||||||
- Add forgotten /etc/skel/.gnu-emacs
|
- Add forgotten /etc/skel/.gnu-emacs
|
||||||
* Tue Mar 06 2001 - werner@suse.de
|
* Tue Mar 06 2001 werner@suse.de
|
||||||
- Reintegrate ge_site into emacs package.
|
- Reintegrate ge_site into emacs package.
|
||||||
- Mark site-start.el als config file
|
- Mark site-start.el als config file
|
||||||
- Use font-lock instead hilit19/hl319
|
- Use font-lock instead hilit19/hl319
|
||||||
- Rework a few el files
|
- Rework a few el files
|
||||||
* Sat Jan 20 2001 - violiet@suse.de
|
* Sat Jan 20 2001 violiet@suse.de
|
||||||
- changed bdf printing patch to patch also loaddefs.el, because
|
- changed bdf printing patch to patch also loaddefs.el, because
|
||||||
the default for the bdf-directory list comes from loaddefs.el
|
the default for the bdf-directory list comes from loaddefs.el
|
||||||
* Fri Jan 19 2001 - violiet@suse.de
|
* Sat Jan 20 2001 violiet@suse.de
|
||||||
- improved ps-mule.el (use gulim font for Korean bdf printing)
|
- improved ps-mule.el (use gulim font for Korean bdf printing)
|
||||||
* Wed Jan 17 2001 - mfabian@suse.de
|
* Wed Jan 17 2001 mfabian@suse.de
|
||||||
- some further tuning of app-defaults
|
- some further tuning of app-defaults
|
||||||
* Tue Jan 16 2001 - mfabian@suse.de
|
* Wed Jan 17 2001 mfabian@suse.de
|
||||||
- added patches for dired.el:
|
- added patches for dired.el:
|
||||||
M-x set-language-environment RET Japanese RET M-x dired
|
M-x set-language-environment RET Japanese RET M-x dired
|
||||||
and
|
and
|
||||||
@ -3558,158 +3651,158 @@ done
|
|||||||
works now.
|
works now.
|
||||||
- added patch for ps-mule.el which makes Korean PostScript printing
|
- added patch for ps-mule.el which makes Korean PostScript printing
|
||||||
work.
|
work.
|
||||||
* Tue Jan 16 2001 - mfabian@suse.de
|
* Tue Jan 16 2001 mfabian@suse.de
|
||||||
- improved Emacs's app-defaults, using suggestions of
|
- improved Emacs's app-defaults, using suggestions of
|
||||||
violiet@susekorea.net and added some further improvements
|
violiet@susekorea.net and added some further improvements
|
||||||
* Tue Jan 09 2001 - mfabian@suse.de
|
* Tue Jan 09 2001 mfabian@suse.de
|
||||||
- added patch which fixes the problems with XIM.
|
- added patch which fixes the problems with XIM.
|
||||||
* Tue Nov 21 2000 - werner@suse.de
|
* Tue Nov 21 2000 werner@suse.de
|
||||||
- Remove swapping of kp-separator/kp-decimal because it's
|
- Remove swapping of kp-separator/kp-decimal because it's
|
||||||
done in xkbd map for german keyboards
|
done in xkbd map for german keyboards
|
||||||
* Thu Nov 16 2000 - werner@suse.de
|
* Thu Nov 16 2000 werner@suse.de
|
||||||
- Move package names
|
- Move package names
|
||||||
* from ge_exec to emacs
|
* from ge_exec to emacs
|
||||||
* from ge_lisp to emacs-el
|
* from ge_lisp to emacs-el
|
||||||
* from ge_info to emacs-info
|
* from ge_info to emacs-info
|
||||||
- Add kvt.el and gnome.el for the terminal kvt and gnome-terminal
|
- Add kvt.el and gnome.el for the terminal kvt and gnome-terminal
|
||||||
- Assigne locale-translation-file-name dynamically
|
- Assigne locale-translation-file-name dynamically
|
||||||
* Fri Sep 29 2000 - schwab@suse.de
|
* Fri Sep 29 2000 schwab@suse.de
|
||||||
- Update ia64 patch.
|
- Update ia64 patch.
|
||||||
* Wed Jun 21 2000 - schwab@suse.de
|
* Wed Jun 21 2000 schwab@suse.de
|
||||||
- Add again some missing declarations.
|
- Add again some missing declarations.
|
||||||
* Fri Jun 16 2000 - werner@suse.de
|
* Fri Jun 16 2000 werner@suse.de
|
||||||
- New version 20.7 with security fix based on UNIX98 ptys
|
- New version 20.7 with security fix based on UNIX98 ptys
|
||||||
- Make patches comaptible
|
- Make patches comaptible
|
||||||
* Tue Jun 06 2000 - uli@suse.de
|
* Tue Jun 06 2000 uli@suse.de
|
||||||
- moved docs to %%{_docdir}
|
- moved docs to %%{_docdir}
|
||||||
* Thu Jun 01 2000 - kasal@suse.de
|
* Thu Jun 01 2000 kasal@suse.de
|
||||||
- Added app-default/Emacs to use fonts *-iso8859-* .
|
- Added app-default/Emacs to use fonts *-iso8859-* .
|
||||||
This way we find iso8859-2 fonts in Czech environment.
|
This way we find iso8859-2 fonts in Czech environment.
|
||||||
* Wed May 17 2000 - schwab@suse.de
|
* Wed May 17 2000 schwab@suse.de
|
||||||
- Add some missing declarations.
|
- Add some missing declarations.
|
||||||
* Tue Apr 04 2000 - bk@suse.de
|
* Tue Apr 04 2000 bk@suse.de
|
||||||
- s390 team added s390 support
|
- s390 team added s390 support
|
||||||
* Wed Mar 22 2000 - schwab@suse.de
|
* Wed Mar 22 2000 schwab@suse.de
|
||||||
- Add ia64 patches.
|
- Add ia64 patches.
|
||||||
- Update config.{guess,sub} from automake.
|
- Update config.{guess,sub} from automake.
|
||||||
* Wed Mar 08 2000 - werner@suse.de
|
* Wed Mar 08 2000 werner@suse.de
|
||||||
- Switch to bug fix release 20.6 (MULE, locale, Y2K, ...)
|
- Switch to bug fix release 20.6 (MULE, locale, Y2K, ...)
|
||||||
* Thu Feb 03 2000 - werner@suse.de
|
* Thu Feb 03 2000 werner@suse.de
|
||||||
- Type of ospeed is speed_t for linux
|
- Type of ospeed is speed_t for linux
|
||||||
* Mon Jan 31 2000 - kasal@suse.cz
|
* Mon Jan 31 2000 kasal@suse.cz
|
||||||
- don't build etags and ctags, it's not in the filelist
|
- don't build etags and ctags, it's not in the filelist
|
||||||
- rename gctags to gnuctags (has no efect)
|
- rename gctags to gnuctags (has no efect)
|
||||||
- in lib-src: use regex and getopt from glibc
|
- in lib-src: use regex and getopt from glibc
|
||||||
* Wed Jan 19 2000 - werner@suse.de
|
* Thu Jan 20 2000 werner@suse.de
|
||||||
- The system is ${RPM_ARCH}-suse-linux even for sparc ;^)
|
- The system is ${RPM_ARCH}-suse-linux even for sparc ;^)
|
||||||
- /usr/man -> /usr/share/man
|
- /usr/man -> /usr/share/man
|
||||||
- /usr/info -> /usr/share/info
|
- /usr/info -> /usr/share/info
|
||||||
* Fri Dec 31 1999 - kukuk@suse.de
|
* Fri Dec 31 1999 kukuk@suse.de
|
||||||
- Fix filelist in spec file
|
- Fix filelist in spec file
|
||||||
* Fri Dec 31 1999 - kukuk@suse.de
|
* Fri Dec 31 1999 kukuk@suse.de
|
||||||
- Use %%{_target_cpu}-suse-linux-gnu instead of
|
- Use %%{_target_cpu}-suse-linux-gnu instead of
|
||||||
${RPM_ARCH}-suse-linux (necessary for SPARC)
|
${RPM_ARCH}-suse-linux (necessary for SPARC)
|
||||||
* Tue Dec 21 1999 - werner@suse.de
|
* Tue Dec 21 1999 werner@suse.de
|
||||||
- New version
|
- New version
|
||||||
- Try to port my patches to this version
|
- Try to port my patches to this version
|
||||||
* Wed Dec 01 1999 - werner@suse.de
|
* Wed Dec 01 1999 werner@suse.de
|
||||||
- Fix pty handling: use glibc extension
|
- Fix pty handling: use glibc extension
|
||||||
* Thu Nov 11 1999 - werner@suse.de
|
* Thu Nov 11 1999 werner@suse.de
|
||||||
- Fix ctype expansion
|
- Fix ctype expansion
|
||||||
* Wed Oct 20 1999 - werner@suse.de
|
* Wed Oct 20 1999 werner@suse.de
|
||||||
- Remove etags and ctags and set requires for ctags package
|
- Remove etags and ctags and set requires for ctags package
|
||||||
* Sun Oct 17 1999 - ro@suse.de
|
* Sun Oct 17 1999 ro@suse.de
|
||||||
- fixed neededforbuild
|
- fixed neededforbuild
|
||||||
* Mon Sep 27 1999 - bs@suse.de
|
* Mon Sep 27 1999 bs@suse.de
|
||||||
- fixed requirements for sub packages
|
- fixed requirements for sub packages
|
||||||
* Fri Sep 24 1999 - werner@suse.de
|
* Sat Sep 25 1999 werner@suse.de
|
||||||
- Add new and forgotten dif
|
- Add new and forgotten dif
|
||||||
* Fri Sep 24 1999 - werner@suse.de
|
* Fri Sep 24 1999 werner@suse.de
|
||||||
- Merging BETA and STABLE package
|
- Merging BETA and STABLE package
|
||||||
* Thu Sep 16 1999 - uli@suse.de
|
* Thu Sep 16 1999 uli@suse.de
|
||||||
- merged in Geoffrey Keating's PPC patch
|
- merged in Geoffrey Keating's PPC patch
|
||||||
* Mon Sep 13 1999 - bs@suse.de
|
* Mon Sep 13 1999 bs@suse.de
|
||||||
- ran old prepare_spec on spec file to switch to new prepare_spec.
|
- ran old prepare_spec on spec file to switch to new prepare_spec.
|
||||||
* Mon Aug 16 1999 - werner@suse.de
|
* Mon Aug 16 1999 werner@suse.de
|
||||||
- The name is Andreas Schwab, sorry
|
- The name is Andreas Schwab, sorry
|
||||||
* Fri Aug 13 1999 - werner@suse.de
|
* Sat Aug 14 1999 werner@suse.de
|
||||||
- Add bug fix of Andy Schwab
|
- Add bug fix of Andy Schwab
|
||||||
* Wed Aug 04 1999 - werner@suse.de
|
* Wed Aug 04 1999 werner@suse.de
|
||||||
- New version 20.4
|
- New version 20.4
|
||||||
* add SuSE fixes and enhancements
|
* add SuSE fixes and enhancements
|
||||||
* make KOI8-R work again
|
* make KOI8-R work again
|
||||||
* reanable ispell menu map rebuild on the fly
|
* reanable ispell menu map rebuild on the fly
|
||||||
* Fri May 28 1999 - ro@suse.de
|
* Fri May 28 1999 ro@suse.de
|
||||||
- added patch from Wolfram Gloger to run on glibc-2.1
|
- added patch from Wolfram Gloger to run on glibc-2.1
|
||||||
* Thu Apr 15 1999 - werner@suse.de
|
* Thu Apr 15 1999 werner@suse.de
|
||||||
- Fix stupid bug
|
- Fix stupid bug
|
||||||
* Wed Apr 14 1999 - werner@suse.de
|
* Wed Apr 14 1999 werner@suse.de
|
||||||
- Enable russian KOI encoding
|
- Enable russian KOI encoding
|
||||||
* Mon Mar 08 1999 - werner@suse.de
|
* Mon Mar 08 1999 werner@suse.de
|
||||||
- Remove site-lisp/hacks/ispell.el* to use the dynamic
|
- Remove site-lisp/hacks/ispell.el* to use the dynamic
|
||||||
rebuild of the Spell menu of the ispell package
|
rebuild of the Spell menu of the ispell package
|
||||||
* Wed Mar 03 1999 - ro@suse.de
|
* Wed Mar 03 1999 ro@suse.de
|
||||||
- removed -egcs from spec: done automatically when gcc is specified
|
- removed -egcs from spec: done automatically when gcc is specified
|
||||||
- added linkscr-patch from cristian gafton
|
- added linkscr-patch from cristian gafton
|
||||||
- filelist use wildcard "*" for arch
|
- filelist use wildcard "*" for arch
|
||||||
* Wed Feb 24 1999 - werner@suse.de
|
* Wed Feb 24 1999 werner@suse.de
|
||||||
- Add locale handling
|
- Add locale handling
|
||||||
- Fix display-time bug
|
- Fix display-time bug
|
||||||
* Wed Jan 20 1999 - werner@suse.de
|
* Wed Jan 20 1999 werner@suse.de
|
||||||
- Fix ratio for memory allocation on alpha
|
- Fix ratio for memory allocation on alpha
|
||||||
* Wed Dec 09 1998 - bs@suse.de
|
* Wed Dec 09 1998 bs@suse.de
|
||||||
- removed /usr/info/dir from file list
|
- removed /usr/info/dir from file list
|
||||||
* Tue Nov 17 1998 - werner@suse.de
|
* Tue Nov 17 1998 werner@suse.de
|
||||||
- Fix null pointer in command argument sorting
|
- Fix null pointer in command argument sorting
|
||||||
* Fri Nov 13 1998 - bs@suse.de
|
* Fri Nov 13 1998 bs@suse.de
|
||||||
- fixed spec file (double entry Summary)
|
- fixed spec file (double entry Summary)
|
||||||
* Thu Nov 12 1998 - bs@suse.de
|
* Thu Nov 12 1998 bs@suse.de
|
||||||
- fixed spec file for new rpm.
|
- fixed spec file for new rpm.
|
||||||
* Thu Sep 17 1998 - werner@suse.de
|
* Fri Sep 18 1998 werner@suse.de
|
||||||
- Some more fixes
|
- Some more fixes
|
||||||
* include cc-defs.el into all *.el which needs c-safe
|
* include cc-defs.el into all *.el which needs c-safe
|
||||||
* Mon Sep 07 1998 - werner@suse.de
|
* Mon Sep 07 1998 werner@suse.de
|
||||||
- Some fixes: lisp/browse-url.el, lisp/midnight.el,
|
- Some fixes: lisp/browse-url.el, lisp/midnight.el,
|
||||||
lisp/repeat.el, lisp/emacs-lisp/find-func.el,
|
lisp/repeat.el, lisp/emacs-lisp/find-func.el,
|
||||||
lisp/mail/mail-hist.el, src/coding.c, src/data.c,
|
lisp/mail/mail-hist.el, src/coding.c, src/data.c,
|
||||||
src/lread.c and src/print.c.
|
src/lread.c and src/print.c.
|
||||||
* Wed Sep 02 1998 - werner@suse.de
|
* Wed Sep 02 1998 werner@suse.de
|
||||||
- Fix typo in speedstar.el and add a tab mapping
|
- Fix typo in speedstar.el and add a tab mapping
|
||||||
* Tue Sep 01 1998 - werner@suse.de
|
* Tue Sep 01 1998 werner@suse.de
|
||||||
- New version 20.3
|
- New version 20.3
|
||||||
- Port the previous changes to the new version 20.3
|
- Port the previous changes to the new version 20.3
|
||||||
- Make de, de_DE, and so on working with LC_CTYPE, LC_ALL,
|
- Make de, de_DE, and so on working with LC_CTYPE, LC_ALL,
|
||||||
and LANG
|
and LANG
|
||||||
- Do not overwrite default-enable-multibyte-characters
|
- Do not overwrite default-enable-multibyte-characters
|
||||||
in func-keys.el
|
in func-keys.el
|
||||||
* Mon Jul 20 1998 - werner@suse.de
|
* Mon Jul 20 1998 werner@suse.de
|
||||||
- mktemp need six X
|
- mktemp need six X
|
||||||
* Mon Jul 20 1998 - werner@suse.de
|
* Mon Jul 20 1998 werner@suse.de
|
||||||
- delsel ... hmmpf defcustom isn't very funny ... fixed
|
- delsel ... hmmpf defcustom isn't very funny ... fixed
|
||||||
- mule ... now we set european display for the most languages
|
- mule ... now we set european display for the most languages
|
||||||
found under /usr/share/locale/ ... see locale.alias
|
found under /usr/share/locale/ ... see locale.alias
|
||||||
* Fri Jul 10 1998 - werner@suse.de
|
* Fri Jul 10 1998 werner@suse.de
|
||||||
- Remove exploit in rcs2log and vcdiff
|
- Remove exploit in rcs2log and vcdiff
|
||||||
* Wed Jul 08 1998 - werner@suse.de
|
* Wed Jul 08 1998 werner@suse.de
|
||||||
- New version 20.2
|
- New version 20.2
|
||||||
- Many bug fixes included
|
- Many bug fixes included
|
||||||
* Tue Feb 10 1998 - werner@suse.de
|
* Tue Feb 10 1998 werner@suse.de
|
||||||
- Add a changed ispell.el for new ispell dictionaries
|
- Add a changed ispell.el for new ispell dictionaries
|
||||||
... make sure that menu bar is rebuild.
|
... make sure that menu bar is rebuild.
|
||||||
- Add missing setsid in callproc.c
|
- Add missing setsid in callproc.c
|
||||||
* Mon Nov 10 1997 - werner@suse.de
|
* Tue Nov 11 1997 werner@suse.de
|
||||||
- ready for autobuild
|
- ready for autobuild
|
||||||
* Sun Jun 01 1997 - bs@suse.de
|
* Mon Jun 02 1997 bs@suse.de
|
||||||
- removed usr/bin/ctags & usr/man/man1/ctags.1.gz (included in package ctags)
|
- removed usr/bin/ctags & usr/man/man1/ctags.1.gz (included in package ctags)
|
||||||
* Sat May 24 1997 - werner@suse.de
|
* Sun May 25 1997 werner@suse.de
|
||||||
- some changes in keycode under TERM=xterm (term/xterm.el)
|
- some changes in keycode under TERM=xterm (term/xterm.el)
|
||||||
- fix system-type: `rms' uses gnu/linux :-((
|
- fix system-type: `rms' uses gnu/linux :-((
|
||||||
now dired-chown.program should work again.
|
now dired-chown.program should work again.
|
||||||
* Tue Feb 04 1997 - werner@suse.de
|
* Tue Feb 04 1997 werner@suse.de
|
||||||
- Update auf gefixte Version 19.34b
|
- Update auf gefixte Version 19.34b
|
||||||
- Drucken sollte jetzt möglich sein
|
- Drucken sollte jetzt möglich sein
|
||||||
- Aufräumen von term/linux.el und term/xterm.el
|
- Aufräumen von term/linux.el und term/xterm.el
|
||||||
* Thu Jan 02 1997 - werner@suse.de
|
* Thu Jan 02 1997 werner@suse.de
|
||||||
- Neue Version von GNU Emacs: 19.34
|
- Neue Version von GNU Emacs: 19.34
|
||||||
- Anpassungen an TERM=linux, TERM=xterm
|
- Anpassungen an TERM=linux, TERM=xterm
|
||||||
- Delete löscht Zeichen unter dem Cursor
|
- Delete löscht Zeichen unter dem Cursor
|
||||||
|
Loading…
x
Reference in New Issue
Block a user