diff options
| author | Paul Eggert | 2011-07-02 23:15:12 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-07-02 23:15:12 -0700 |
| commit | cf7cff578408753b6a7bade084f1147b0e3d9618 (patch) | |
| tree | c9629da403d949ca0276bb2e98e9ce31a2c334f4 /src | |
| parent | fc00f69c3775883d90faa955dff956652f260c3d (diff) | |
| download | emacs-cf7cff578408753b6a7bade084f1147b0e3d9618.tar.gz emacs-cf7cff578408753b6a7bade084f1147b0e3d9618.zip | |
* keymap.c (access_keymap_1): Now static.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/keymap.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 8b4029bd7b3..e2f66eec15b 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2011-07-03 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | * keymap.c (access_keymap_1): Now static. | ||
| 4 | |||
| 1 | 2011-07-02 Chong Yidong <cyd@stupidchicken.com> | 5 | 2011-07-02 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 6 | ||
| 3 | * keyboard.c (command_loop_1): If a down-mouse event is unbound, | 7 | * keyboard.c (command_loop_1): If a down-mouse event is unbound, |
diff --git a/src/keymap.c b/src/keymap.c index 062fb5d0d5f..be31f72eec6 100644 --- a/src/keymap.c +++ b/src/keymap.c | |||
| @@ -388,7 +388,7 @@ Return PARENT. PARENT should be nil or another keymap. */) | |||
| 388 | Returns Qunbound if no binding was found (and returns Qnil if a nil | 388 | Returns Qunbound if no binding was found (and returns Qnil if a nil |
| 389 | binding was found). */ | 389 | binding was found). */ |
| 390 | 390 | ||
| 391 | Lisp_Object | 391 | static Lisp_Object |
| 392 | access_keymap_1 (Lisp_Object map, Lisp_Object idx, int t_ok, int noinherit, int autoload) | 392 | access_keymap_1 (Lisp_Object map, Lisp_Object idx, int t_ok, int noinherit, int autoload) |
| 393 | { | 393 | { |
| 394 | /* If idx is a list (some sort of mouse click, perhaps?), | 394 | /* If idx is a list (some sort of mouse click, perhaps?), |