diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2010-01-11 09:58:59 -0500 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2010-01-11 09:58:59 -0500 |
commit | 652fcc713661acdda1cdaad91264694bf26902d0 (patch) | |
tree | 188d7e246720f93b1b8da79c0b56f4af8130d08f /src | |
parent | 4d03ece09d1f9b8a5b4d1b180ad49016ef9c29b0 (diff) | |
download | emacs-652fcc713661acdda1cdaad91264694bf26902d0.tar.gz emacs-652fcc713661acdda1cdaad91264694bf26902d0.tar.bz2 emacs-652fcc713661acdda1cdaad91264694bf26902d0.zip |
* nsterm.m: Use DEFSYM for last change.
Diffstat (limited to 'src')
-rw-r--r-- | src/nsterm.m | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/nsterm.m b/src/nsterm.m index 4f6c1d8d924..5385f174ebd 100644 --- a/src/nsterm.m +++ b/src/nsterm.m @@ -6145,16 +6145,16 @@ syms_of_nsterm () ns_antialias_threshold = 10.0; /* from 23+ we need to tell emacs what modifiers there are.. */ - Qmodifier_value = intern ("modifier-value"); - Qalt = intern ("alt"); + DEFSYM (Qmodifier_value, "modifier-value"); + DEFSYM (Qalt, "alt"); + DEFSYM (Qhyper, "hyper"); + DEFSYM (Qmeta, "meta"); + DEFSYM (Qsuper, "super"); + DEFSYM (Qcontrol, "control"); Fput (Qalt, Qmodifier_value, make_number (alt_modifier)); - Qhyper = intern ("hyper"); Fput (Qhyper, Qmodifier_value, make_number (hyper_modifier)); - Qmeta = intern ("meta"); Fput (Qmeta, Qmodifier_value, make_number (meta_modifier)); - Qsuper = intern ("super"); Fput (Qsuper, Qmodifier_value, make_number (super_modifier)); - Qcontrol = intern ("control"); Fput (Qcontrol, Qmodifier_value, make_number (ctrl_modifier)); DEFVAR_LISP ("ns-input-file", &ns_input_file, |