diff options
| author | Glenn Morris | 2009-02-27 04:02:22 +0000 |
|---|---|---|
| committer | Glenn Morris | 2009-02-27 04:02:22 +0000 |
| commit | d88bee5a40900e82fcf6b72b6d6d1da9cdeaea43 (patch) | |
| tree | 4370dfb0c764c9344ac5ccbe8984e9f3455c375f | |
| parent | 6565b5ab2039c56332d95c736bf4883905520645 (diff) | |
| download | emacs-d88bee5a40900e82fcf6b72b6d6d1da9cdeaea43.tar.gz emacs-d88bee5a40900e82fcf6b72b6d6d1da9cdeaea43.zip | |
(Finteractive): Doc fix.
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/callint.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 1c1dc7dde72..43a72dae60b 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2009-02-27 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * callint.c (Finteractive): Doc fix. | ||
| 4 | |||
| 1 | 2009-02-27 Kenichi Handa <handa@m17n.org> | 5 | 2009-02-27 Kenichi Handa <handa@m17n.org> |
| 2 | 6 | ||
| 3 | * lread.c (read_escape): Signal an error for invalid \UXXXXXXXX. | 7 | * lread.c (read_escape): Signal an error for invalid \UXXXXXXXX. |
diff --git a/src/callint.c b/src/callint.c index e5540adfb97..c08cd8bf2f4 100644 --- a/src/callint.c +++ b/src/callint.c | |||
| @@ -127,7 +127,7 @@ If the string begins with `^' and `shift-select-mode' is non-nil, | |||
| 127 | Emacs first calls the function `handle-shift-select'. | 127 | Emacs first calls the function `handle-shift-select'. |
| 128 | You may use `@', `*', and `^' together. They are processed in the | 128 | You may use `@', `*', and `^' together. They are processed in the |
| 129 | order that they appear, before reading any arguments. | 129 | order that they appear, before reading any arguments. |
| 130 | usage: (interactive ARGS) */) | 130 | usage: (interactive &optional ARGS) */) |
| 131 | (args) | 131 | (args) |
| 132 | Lisp_Object args; | 132 | Lisp_Object args; |
| 133 | { | 133 | { |