Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 44766 | Differences between
and this patch

Collapse All | Expand All

(-)emacs-18.59-orig/src/ChangeLog (+6 lines)
Lines 1-3 Link Here
1
2004-03-09  Ulrich Mueller  <ulm@kph.uni-mainz.de>
2
3
	* malloc.c (DONT_DEFINE_SIGNAL): Defined.
4
5
	* s-linux.h (TERMINFO): Moved here from ymakefile.
6
1
2004-03-08  Ulrich Mueller  <ulm@kph.uni-mainz.de>
7
2004-03-08  Ulrich Mueller  <ulm@kph.uni-mainz.de>
2
8
3
	* unexelf.c: Replaced with version from Emacs 21.3.
9
	* unexelf.c: Replaced with version from Emacs 21.3.
(-)emacs-18.59-orig/src/malloc.c (+3 lines)
Lines 59-64 Link Here
59
 */
59
 */
60
60
61
#ifdef emacs
61
#ifdef emacs
62
/* Inhibit macro definition of "signal" in m-*.h */
63
#define DONT_DEFINE_SIGNAL
64
62
/* config.h specifies which kind of system this is.  */
65
/* config.h specifies which kind of system this is.  */
63
#include "config.h"
66
#include "config.h"
64
67
(-)emacs-18.59-orig/src/s-linux.h (-1 / +4 lines)
Lines 164-169 Link Here
164
#define POSIX			/* affects only getpagesize.h */
164
#define POSIX			/* affects only getpagesize.h */
165
#define POSIX_SIGNALS		/* uses sigaction from sys_signal */
165
#define POSIX_SIGNALS		/* uses sigaction from sys_signal */
166
166
167
/* Use terminfo instead of termcap. */
168
#define TERMINFO
169
167
#ifdef HAVE_PTMX
170
#ifdef HAVE_PTMX
168
171
169
/* This change means that we don't loop through allocate_pty too many
172
/* This change means that we don't loop through allocate_pty too many
Lines 250-256 Link Here
250
253
251
#define C_COMPILER gcc
254
#define C_COMPILER gcc
252
#define C_DEBUG_SWITCH -g
255
#define C_DEBUG_SWITCH -g
253
#define C_OPTIMIZE_SWITCH -O3 -malign-loops=2 -malign-jumps=2 -malign-functions=2
256
#define C_OPTIMIZE_SWITCH -O2 -malign-loops=2 -malign-jumps=2 -malign-functions=2
254
#define OLDXMENU_OPTIONS CFLAGS=-O2 EXTRA=insque.o
257
#define OLDXMENU_OPTIONS CFLAGS=-O2 EXTRA=insque.o
255
#define START_FILES pre-crt0.o /usr/lib/crt1.o /usr/lib/crti.o
258
#define START_FILES pre-crt0.o /usr/lib/crt1.o /usr/lib/crti.o
256
#define LIBS_DEBUG		/* override in config.h to include -lg */
259
#define LIBS_DEBUG		/* override in config.h to include -lg */
(-)emacs-18.59-orig/src/ymakefile (-2 / +1 lines)
Lines 191-197 Link Here
191
SHORT= shortnames
191
SHORT= shortnames
192
#endif /* SHORTNAMES */
192
#endif /* SHORTNAMES */
193
193
194
CFLAGS= C_DEBUG_SWITCH C_OPTIMIZE_SWITCH -Demacs $(MYCPPFLAG) C_SWITCH_MACHINE C_SWITCH_SYSTEM C_SWITCH_X_MACHINE C_SWITCH_X_SYSTEM
194
CFLAGS= C_OPTIMIZE_SWITCH -Demacs $(MYCPPFLAG) C_SWITCH_MACHINE C_SWITCH_SYSTEM C_SWITCH_X_MACHINE C_SWITCH_X_SYSTEM
195
/* DO NOT use -R.  There is a special hack described in lastfile.c
195
/* DO NOT use -R.  There is a special hack described in lastfile.c
196
   which is used instead.  Some initialized data areas are modified
196
   which is used instead.  Some initialized data areas are modified
197
   at initial startup, then labeled as part of the text area when
197
   at initial startup, then labeled as part of the text area when
Lines 284-290 Link Here
284
	process.o callproc.o $(environobj) \
284
	process.o callproc.o $(environobj) \
285
	doprnt.o
285
	doprnt.o
286
286
287
#define TERMINFO
288
#ifdef TERMINFO
287
#ifdef TERMINFO
289
/* Used to be -ltermcap here.  If your machine needs that,
288
/* Used to be -ltermcap here.  If your machine needs that,
290
   define LIBS_TERMCAP in the m- file.  */
289
   define LIBS_TERMCAP in the m- file.  */
(-)emacs-18.59-orig/lisp/ChangeLog (+6 lines)
Lines 1-3 Link Here
1
2004-03-08  Ulrich Mueller  <ulm@kph.uni-mainz.de>
2
3
	* term/linux.el: New file.
4
5
	* term/xterm.el: Load vt200.el.
6
1
Fri Oct 30 19:36:38 1992  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7
Fri Oct 30 19:36:38 1992  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
2
8
3
	* Version 18.59 released.
9
	* Version 18.59 released.
(-)emacs-18.59-orig/lisp/term/linux.el (+2 lines)
Line 0 Link Here
1
(load (concat term-file-prefix "vt200") nil t)
2
(enable-arrow-keys)
(-)emacs-18.59-orig/lisp/term/xterm.el (-2 / +2 lines)
Lines 1-2 Link Here
1
;; Don't send the `ti' string when screen is cleared.
1
(load (concat term-file-prefix "vt200") nil t)
2
(setq reset-terminal-on-clear nil)
2
(enable-arrow-keys)

Return to bug 44766