summaryrefslogtreecommitdiff
path: root/lispref/control.texi
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1994-05-28 14:52:37 +0000
committerRichard M. Stallman <rms@gnu.org>1994-05-28 14:52:37 +0000
commitc8692120e02bd488a730848a764f8dbe266eb787 (patch)
tree79345c9044851943771a9f26b7097cdbca9880ff /lispref/control.texi
parentd6d1773d1054ba387e8d4bc1fe4659ce3f788f03 (diff)
downloademacs-c8692120e02bd488a730848a764f8dbe266eb787.tar.gz
entered into RCS
Diffstat (limited to 'lispref/control.texi')
-rw-r--r--lispref/control.texi4
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