aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert2013-11-11 19:09:48 -0800
committerPaul Eggert2013-11-11 19:09:48 -0800
commite3ac17b675da71159c536221efe9e0f932e937f2 (patch)
treed3f76fc7e76f5920345e8d912013bc9a12c52737 /src
parent450885491a9fcbf250cccc2586d9c059f61af154 (diff)
downloademacs-e3ac17b675da71159c536221efe9e0f932e937f2.tar.gz
emacs-e3ac17b675da71159c536221efe9e0f932e937f2.zip
* xterm.c (syms_of_xterm): staticpro Qmodifier_value.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog2
-rw-r--r--src/xterm.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index d924233b796..7ea7fb84ec9 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,7 @@
12013-11-12 Paul Eggert <eggert@cs.ucla.edu> 12013-11-12 Paul Eggert <eggert@cs.ucla.edu>
2 2
3 * xterm.c (syms_of_xterm): staticpro Qmodifier_value.
4
3 * buffer.c (Fforce_mode_line_update): Don't fall off end of function 5 * buffer.c (Fforce_mode_line_update): Don't fall off end of function
4 that requires a return value. 6 that requires a return value.
5 (Fset_buffer_modified_p): Take advantage of this change to do 7 (Fset_buffer_modified_p): Take advantage of this change to do
diff --git a/src/xterm.c b/src/xterm.c
index 906954618fe..b803cc13258 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -10587,7 +10587,7 @@ With MS Windows or Nextstep, the value is t. */);
10587 Vx_toolkit_scroll_bars = Qnil; 10587 Vx_toolkit_scroll_bars = Qnil;
10588#endif 10588#endif
10589 10589
10590 Qmodifier_value = intern_c_string ("modifier-value"); 10590 DEFSYM (Qmodifier_value, "modifier-value");
10591 Qalt = intern_c_string ("alt"); 10591 Qalt = intern_c_string ("alt");
10592 Fput (Qalt, Qmodifier_value, make_number (alt_modifier)); 10592 Fput (Qalt, Qmodifier_value, make_number (alt_modifier));
10593 Qhyper = intern_c_string ("hyper"); 10593 Qhyper = intern_c_string ("hyper");