Rename "Automatic Redisplay" entry in Lisp backtrace.
src/xdisp.c (syms_of_xdisp) <Qredisplay_internal>: Rename from Qautomatic_redisplay and change the symbol name. All users changed.
This commit is contained in:
parent
7f457c067d
commit
404043ea88
2 changed files with 9 additions and 4 deletions
|
@ -1,3 +1,8 @@
|
|||
2012-09-28 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
* xdisp.c (syms_of_xdisp) <Qredisplay_internal>: Rename from
|
||||
Qautomatic_redisplay and change the symbol name. All users changed.
|
||||
|
||||
2012-09-28 Tomohiro Matsuyama <tomo@cx4a.org>
|
||||
|
||||
* profiler.c (sigprof_handler): Fix race condition.
|
||||
|
|
|
@ -347,7 +347,7 @@ static Lisp_Object Qfontification_functions;
|
|||
|
||||
static Lisp_Object Qwrap_prefix;
|
||||
static Lisp_Object Qline_prefix;
|
||||
static Lisp_Object Qautomatic_redisplay;
|
||||
static Lisp_Object Qredisplay_internal;
|
||||
|
||||
/* Non-nil means don't actually do any redisplay. */
|
||||
|
||||
|
@ -12975,8 +12975,8 @@ redisplay_internal (void)
|
|||
|
||||
/* Record this function, so it appears on the profiler's backtraces. */
|
||||
backtrace.next = backtrace_list;
|
||||
backtrace.function = &Qautomatic_redisplay;
|
||||
backtrace.args = &Qautomatic_redisplay;
|
||||
backtrace.function = &Qredisplay_internal;
|
||||
backtrace.args = &Qredisplay_internal;
|
||||
backtrace.nargs = 0;
|
||||
backtrace.debug_on_exit = 0;
|
||||
backtrace_list = &backtrace;
|
||||
|
@ -28694,7 +28694,7 @@ syms_of_xdisp (void)
|
|||
staticpro (&Vmessage_stack);
|
||||
|
||||
DEFSYM (Qinhibit_redisplay, "inhibit-redisplay");
|
||||
DEFSYM (Qautomatic_redisplay, "Automatic Redisplay");
|
||||
DEFSYM (Qredisplay_internal, "redisplay_internal (C function)");
|
||||
|
||||
message_dolog_marker1 = Fmake_marker ();
|
||||
staticpro (&message_dolog_marker1);
|
||||
|
|
Loading…
Add table
Reference in a new issue