diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2011-03-16 14:27:03 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2011-03-16 14:27:03 -0700 |
commit | f08b802adcfe721e35de22ab868149d66c28c7f6 (patch) | |
tree | 7b4098503e4f61d53e4ef37b58992d65c1c69bda | |
parent | 5ad03b978fea0a7cfeb8e0b8f78484244642c1c5 (diff) | |
download | emacs-f08b802adcfe721e35de22ab868149d66c28c7f6.tar.gz emacs-f08b802adcfe721e35de22ab868149d66c28c7f6.tar.bz2 emacs-f08b802adcfe721e35de22ab868149d66c28c7f6.zip |
* lisp.h (debug_output_compilation_hack): Add decl here, to avoid
warning when compiling print.c.
-rw-r--r-- | src/ChangeLog | 3 | ||||
-rw-r--r-- | src/lisp.h | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 1f30c599626..5f02fa1188d 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,8 @@ 2011-03-16 Paul Eggert <eggert@cs.ucla.edu> + * lisp.h (debug_output_compilation_hack): Add decl here, to avoid + warning when compiling print.c. + * font.c (font_unparse_fcname): Abort in an "impossible" situation instead of using an uninitialized var. (font_sort_entities): Mark var as initialized. diff --git a/src/lisp.h b/src/lisp.h index 074c758ce8e..04d75d55dc6 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -2763,6 +2763,7 @@ EXFUN (Fprint, 2); EXFUN (Ferror_message_string, 1); extern Lisp_Object Qstandard_output; extern Lisp_Object Qexternal_debugging_output; +extern void debug_output_compilation_hack (int); extern void temp_output_buffer_setup (const char *); extern int print_level; extern Lisp_Object Qprint_escape_newlines; |