aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGlenn Morris2009-02-27 04:02:22 +0000
committerGlenn Morris2009-02-27 04:02:22 +0000
commitd88bee5a40900e82fcf6b72b6d6d1da9cdeaea43 (patch)
tree4370dfb0c764c9344ac5ccbe8984e9f3455c375f /src
parent6565b5ab2039c56332d95c736bf4883905520645 (diff)
downloademacs-d88bee5a40900e82fcf6b72b6d6d1da9cdeaea43.tar.gz
emacs-d88bee5a40900e82fcf6b72b6d6d1da9cdeaea43.zip
(Finteractive): Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/callint.c2
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 @@
12009-02-27 Glenn Morris <rgm@gnu.org>
2
3 * callint.c (Finteractive): Doc fix.
4
12009-02-27 Kenichi Handa <handa@m17n.org> 52009-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'.
128You may use `@', `*', and `^' together. They are processed in the 128You 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.
130usage: (interactive ARGS) */) 130usage: (interactive &optional ARGS) */)
131 (args) 131 (args)
132 Lisp_Object args; 132 Lisp_Object args;
133{ 133{