diff options
| author | Ben Key | 2011-04-14 21:03:43 -0500 |
|---|---|---|
| committer | Ben Key | 2011-04-14 21:03:43 -0500 |
| commit | cc39a9dba6e3633e67501eaf0361fb2f040cb064 (patch) | |
| tree | 9c7041f642e9ffc6d0ab1dfaf7201e1ff5f5a5c9 /src/keyboard.c | |
| parent | b5b8e7de516860a3f568e72b176da19f08e7238d (diff) | |
| download | emacs-cc39a9dba6e3633e67501eaf0361fb2f040cb064.tar.gz emacs-cc39a9dba6e3633e67501eaf0361fb2f040cb064.zip | |
Fix link errors in the Mac OS build that were caused by variables being marked as static that should not have been.
Diffstat (limited to 'src/keyboard.c')
| -rw-r--r-- | src/keyboard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keyboard.c b/src/keyboard.c index 7895d05b34f..c0c53c82714 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -246,7 +246,7 @@ Lisp_Object QPRIMARY; | |||
| 246 | static Lisp_Object Qself_insert_command; | 246 | static Lisp_Object Qself_insert_command; |
| 247 | static Lisp_Object Qforward_char; | 247 | static Lisp_Object Qforward_char; |
| 248 | static Lisp_Object Qbackward_char; | 248 | static Lisp_Object Qbackward_char; |
| 249 | static Lisp_Object Qundefined; | 249 | Lisp_Object Qundefined; |
| 250 | static Lisp_Object Qtimer_event_handler; | 250 | static Lisp_Object Qtimer_event_handler; |
| 251 | 251 | ||
| 252 | /* read_key_sequence stores here the command definition of the | 252 | /* read_key_sequence stores here the command definition of the |