aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndreas Schwab2007-11-15 23:00:45 +0000
committerAndreas Schwab2007-11-15 23:00:45 +0000
commit9b6112e8c3b29f91d8b337c247f3aaf7588dcadb (patch)
tree6676481c2f646b802e25f7a9e1d419216f97b1b8 /src
parent05477667af17c9bfad2f66a6c04d6297b66f9d16 (diff)
downloademacs-9b6112e8c3b29f91d8b337c247f3aaf7588dcadb.tar.gz
emacs-9b6112e8c3b29f91d8b337c247f3aaf7588dcadb.zip
(Fevent_symbol_parse_modifiers): Fix declaration.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/keyboard.c3
2 files changed, 6 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 8ee1649afd9..82f5f3790fa 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12007-11-15 Andreas Schwab <schwab@suse.de>
2
3 * keyboard.c (Fevent_symbol_parse_modifiers): Fix declaration.
4
12007-11-15 Stefan Monnier <monnier@iro.umontreal.ca> 52007-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
2 6
3 * keyboard.c (Fevent_symbol_parse_modifiers): New function. 7 * keyboard.c (Fevent_symbol_parse_modifiers): New function.
diff --git a/src/keyboard.c b/src/keyboard.c
index 41407b5f626..527a4151ba9 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -6548,7 +6548,8 @@ parse_modifiers (symbol)
6548DEFUN ("internal-event-symbol-parse-modifiers", Fevent_symbol_parse_modifiers, 6548DEFUN ("internal-event-symbol-parse-modifiers", Fevent_symbol_parse_modifiers,
6549 Sevent_symbol_parse_modifiers, 1, 1, 0, 6549 Sevent_symbol_parse_modifiers, 1, 1, 0,
6550 doc: /* Parse the event symbol. For internal use. */) 6550 doc: /* Parse the event symbol. For internal use. */)
6551 (symbol) 6551 (symbol)
6552 Lisp_Object symbol;
6552{ 6553{
6553 /* Fill the cache if needed. */ 6554 /* Fill the cache if needed. */
6554 parse_modifiers (symbol); 6555 parse_modifiers (symbol);