diff options
| author | Luc Teirlinck <teirllm@auburn.edu> | 2004-08-02 20:50:09 +0000 |
|---|---|---|
| committer | Luc Teirlinck <teirllm@auburn.edu> | 2004-08-02 20:50:09 +0000 |
| commit | df13361290318d0fd05c9c0ff8d187b731d73846 (patch) | |
| tree | 73b5887fdf2a967ecb0cff43474507a0a385ea80 | |
| parent | 0f7a93c1c6d940cc7691834a7936b800af6c0d6f (diff) | |
| download | emacs-df13361290318d0fd05c9c0ff8d187b731d73846.tar.gz | |
(Finteractive_form): Doc fix.
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/data.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 84538195917..94d8983e1c9 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2004-08-02 Luc Teirlinck <teirllm@auburn.edu> + + * data.c (Finteractive_form): Doc fix. + 2004-08-02 Kim F. Storm <storm@cua.dk> * indent.c (compute_motion): Use actual window width if WIDTH is -1, diff --git a/src/data.c b/src/data.c index 1259c5891a1..616e91c2d62 100644 --- a/src/data.c +++ b/src/data.c @@ -776,8 +776,8 @@ SUBR must be a built-in function. */) DEFUN ("interactive-form", Finteractive_form, Sinteractive_form, 1, 1, 0, doc: /* Return the interactive form of CMD or nil if none. -CMD must be a command. Value, if non-nil, is a list -\(interactive SPEC). */) +If CMD is not a command, the return value is nil. +Value, if non-nil, is a list \(interactive SPEC). */) (cmd) Lisp_Object cmd; { |
