diff options
| author | Karl Heuer | 1997-10-02 03:10:35 +0000 |
|---|---|---|
| committer | Karl Heuer | 1997-10-02 03:10:35 +0000 |
| commit | c23edb78db00412dc925b9e2e91669112c2d60c0 (patch) | |
| tree | 82b8d111ff68512ffa697c20a9b9c8937d64aa32 | |
| parent | 726ed0dab6d8cd08c7fe38d19cf7c8165cc22160 (diff) | |
| download | emacs-c23edb78db00412dc925b9e2e91669112c2d60c0.tar.gz emacs-c23edb78db00412dc925b9e2e91669112c2d60c0.zip | |
Make sure that make-docfile does not see the doc string
of the disabled function eval-current-buffer.
| -rw-r--r-- | src/lread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lread.c b/src/lread.c index a2c90e7f2b1..1cf882d36d2 100644 --- a/src/lread.c +++ b/src/lread.c | |||
| @@ -983,7 +983,7 @@ This function preserves the position of point.") | |||
| 983 | } | 983 | } |
| 984 | 984 | ||
| 985 | #if 0 | 985 | #if 0 |
| 986 | DEFUN ("eval-current-buffer", Feval_current_buffer, Seval_current_buffer, 0, 1, "", | 986 | XDEFUN ("eval-current-buffer", Feval_current_buffer, Seval_current_buffer, 0, 1, "", |
| 987 | "Execute the current buffer as Lisp code.\n\ | 987 | "Execute the current buffer as Lisp code.\n\ |
| 988 | Programs can pass argument PRINTFLAG which controls printing of output:\n\ | 988 | Programs can pass argument PRINTFLAG which controls printing of output:\n\ |
| 989 | nil means discard it; anything else is stream for print.\n\ | 989 | nil means discard it; anything else is stream for print.\n\ |