diff options
| author | Chong Yidong | 2010-01-11 09:58:59 -0500 |
|---|---|---|
| committer | Chong Yidong | 2010-01-11 09:58:59 -0500 |
| commit | 652fcc713661acdda1cdaad91264694bf26902d0 (patch) | |
| tree | 188d7e246720f93b1b8da79c0b56f4af8130d08f /src | |
| parent | 4d03ece09d1f9b8a5b4d1b180ad49016ef9c29b0 (diff) | |
| download | emacs-652fcc713661acdda1cdaad91264694bf26902d0.tar.gz 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 () | |||
| 6145 | ns_antialias_threshold = 10.0; | 6145 | ns_antialias_threshold = 10.0; |
| 6146 | 6146 | ||
| 6147 | /* from 23+ we need to tell emacs what modifiers there are.. */ | 6147 | /* from 23+ we need to tell emacs what modifiers there are.. */ |
| 6148 | Qmodifier_value = intern ("modifier-value"); | 6148 | DEFSYM (Qmodifier_value, "modifier-value"); |
| 6149 | Qalt = intern ("alt"); | 6149 | DEFSYM (Qalt, "alt"); |
| 6150 | DEFSYM (Qhyper, "hyper"); | ||
| 6151 | DEFSYM (Qmeta, "meta"); | ||
| 6152 | DEFSYM (Qsuper, "super"); | ||
| 6153 | DEFSYM (Qcontrol, "control"); | ||
| 6150 | Fput (Qalt, Qmodifier_value, make_number (alt_modifier)); | 6154 | Fput (Qalt, Qmodifier_value, make_number (alt_modifier)); |
| 6151 | Qhyper = intern ("hyper"); | ||
| 6152 | Fput (Qhyper, Qmodifier_value, make_number (hyper_modifier)); | 6155 | Fput (Qhyper, Qmodifier_value, make_number (hyper_modifier)); |
| 6153 | Qmeta = intern ("meta"); | ||
| 6154 | Fput (Qmeta, Qmodifier_value, make_number (meta_modifier)); | 6156 | Fput (Qmeta, Qmodifier_value, make_number (meta_modifier)); |
| 6155 | Qsuper = intern ("super"); | ||
| 6156 | Fput (Qsuper, Qmodifier_value, make_number (super_modifier)); | 6157 | Fput (Qsuper, Qmodifier_value, make_number (super_modifier)); |
| 6157 | Qcontrol = intern ("control"); | ||
| 6158 | Fput (Qcontrol, Qmodifier_value, make_number (ctrl_modifier)); | 6158 | Fput (Qcontrol, Qmodifier_value, make_number (ctrl_modifier)); |
| 6159 | 6159 | ||
| 6160 | DEFVAR_LISP ("ns-input-file", &ns_input_file, | 6160 | DEFVAR_LISP ("ns-input-file", &ns_input_file, |