diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-05-28 14:52:37 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-05-28 14:52:37 +0000 |
commit | ec221d13b75a2fedd86911ab92e105262ac098ee (patch) | |
tree | f8a7f2f95d3772348bc80ec531940646d8e594b4 /lispref/control.texi | |
parent | a6b7947839908b6b55f1e83caec1f6450afc1e13 (diff) | |
download | emacs-ec221d13b75a2fedd86911ab92e105262ac098ee.tar.gz |
entered into RCS
Diffstat (limited to 'lispref/control.texi')
-rw-r--r-- | lispref/control.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lispref/control.texi b/lispref/control.texi index 60fe2d56117..aea1c535588 100644 --- a/lispref/control.texi +++ b/lispref/control.texi @@ -1133,7 +1133,7 @@ but at least it is very unlikely. to kill a temporary buffer. In this example, the value returned by @code{unwind-protect} is used. -@example +@smallexample (defun shell-command-string (cmd) "Return the output of the shell command CMD, as a string." (save-excursion @@ -1142,4 +1142,4 @@ to kill a temporary buffer. In this example, the value returned by (unwind-protect (buffer-string) (kill-buffer (current-buffer))))) -@end example +@end smallexample |