diff options
| author | Richard M. Stallman | 1993-06-07 17:19:36 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-06-07 17:19:36 +0000 |
| commit | 2fa8c0b5d4f9b02705adb80d9c4d7bfcd6a3f4f5 (patch) | |
| tree | 7cac301910da5507f3070014572d569261924a3f /src/keymap.c | |
| parent | 4f9d3ad8807990cccf8df791af556b628dfcc9de (diff) | |
| download | emacs-2fa8c0b5d4f9b02705adb80d9c4d7bfcd6a3f4f5.tar.gz emacs-2fa8c0b5d4f9b02705adb80d9c4d7bfcd6a3f4f5.zip | |
Doc fix.
Diffstat (limited to 'src/keymap.c')
| -rw-r--r-- | src/keymap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/keymap.c b/src/keymap.c index 107c2ec3b87..44179806ada 100644 --- a/src/keymap.c +++ b/src/keymap.c | |||
| @@ -854,7 +854,7 @@ DEFUN ("global-set-key", Fglobal_set_key, Sglobal_set_key, 2, 2, | |||
| 854 | "kSet key globally: \nCSet key %s to command: ", | 854 | "kSet key globally: \nCSet key %s to command: ", |
| 855 | "Give KEY a global binding as COMMAND.\n\ | 855 | "Give KEY a global binding as COMMAND.\n\ |
| 856 | COMMAND is a symbol naming an interactively-callable function.\n\ | 856 | COMMAND is a symbol naming an interactively-callable function.\n\ |
| 857 | KEY is a string representing a sequence of keystrokes.\n\ | 857 | KEY is a key sequence (a string or vector of characters or event types).\n\ |
| 858 | Note that if KEY has a local binding in the current buffer\n\ | 858 | Note that if KEY has a local binding in the current buffer\n\ |
| 859 | that local binding will continue to shadow any global binding.") | 859 | that local binding will continue to shadow any global binding.") |
| 860 | (keys, function) | 860 | (keys, function) |
| @@ -872,7 +872,7 @@ DEFUN ("local-set-key", Flocal_set_key, Slocal_set_key, 2, 2, | |||
| 872 | "kSet key locally: \nCSet key %s locally to command: ", | 872 | "kSet key locally: \nCSet key %s locally to command: ", |
| 873 | "Give KEY a local binding as COMMAND.\n\ | 873 | "Give KEY a local binding as COMMAND.\n\ |
| 874 | COMMAND is a symbol naming an interactively-callable function.\n\ | 874 | COMMAND is a symbol naming an interactively-callable function.\n\ |
| 875 | KEY is a string representing a sequence of keystrokes.\n\ | 875 | KEY is a key sequence (a string or vector of characters or event types).\n\ |
| 876 | The binding goes in the current buffer's local map,\n\ | 876 | The binding goes in the current buffer's local map,\n\ |
| 877 | which is shared with other buffers in the same major mode.") | 877 | which is shared with other buffers in the same major mode.") |
| 878 | (keys, function) | 878 | (keys, function) |