1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-23 10:34:07 +00:00

*** empty log message ***

This commit is contained in:
Gerd Moellmann 1999-11-03 13:47:00 +00:00
parent 63ca439e7f
commit cb3a6c483b
4 changed files with 34 additions and 1 deletions

View File

@ -52,7 +52,7 @@ each character set.
The intlfonts distribution contains its own installation instructions,
in the intlfonts/README file.
* elisp-manual-VERSION.tar.gz
* elisp-manual-EMACSVERSION-MANVERSION.tar.gz
This is the Emacs Lisp Reference for programmers, containing an
in-depth discussion of Emacs Lisp and Emacs internals. The

View File

@ -1,3 +1,7 @@
1999-11-03 Gerd Moellmann <gerd@gnu.org>
* etags.c (print_help): Change email address to send bugs to.
1999-11-01 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
* etags.c: Add suffix psw for PSWrap.

View File

@ -1,3 +1,12 @@
1999-11-03 Richard M. Stallman <rms@caffeine.ai.mit.edu>
* emacs-lisp/debug.el (debug): If noninteractive, display the
backtrace using `message', then exit Emacs.
(debugger-batch-max-lines): New variable.
(debugger-setup-buffer): New subroutine, broken out of `debug'.
Change the messages put at the start, to say that the debugger
was entered.
1999-11-02 Sam Steingold <sds@ksp.com>
* progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.

View File

@ -51,6 +51,10 @@
* syntax.c: Remove whitespace after open or in front of closing
parentheses.
1999-11-01 Richard M. Stallman <rms@caffeine.ai.mit.edu>
* Makefile.in (w16select.o, sound.o): Don't depend on lisp.h.
1999-10-31 Gerd Moellmann <gerd@gnu.org>
* xdisp.c (resize_mini_window): Compute needed height differently.
@ -61,6 +65,22 @@
(display_line): Set charpos of first glyph to -1 only if that
glyph is the space added by append_glyph.
1999-10-30 Richard M. Stallman <rms@caffeine.ai.mit.edu>
* print.c (strout): Consider `noninteractive' and use stdout
only when PRINTCHARFUN is t.
* lisp.h (struct gcpro) [DEBUG_GCPRO]: New field `level'.
(gcpro_level): Declare it extern.
[DEBUG_GCPRO] (GCPRO1, GCPRO2, GCPRO3, GCPRO4, GCPRO5):
Alternate definitions that set `level' and increment `gcpro_level'.
[DEBUG_GCPRO] (UNGCPRO): Alternate definition that checks gcpro_level.
* eval.c [DEBUG_GCPRO] (gcpro_level): New variable.
(init_eval) [DEBUG_GCPRO]: Initialize it.
(unwind_to_catch) [DEBUG_GCPRO]: Set gcpro_level
from remaining gcprolist.
1999-10-29 Kenichi Handa <handa@etl.go.jp>
* coding.c (code_convert_region): Update `dst' correctly.