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
commitec221d13b75a2fedd86911ab92e105262ac098ee (patch)
treef8a7f2f95d3772348bc80ec531940646d8e594b4 /lispref/control.texi
parenta6b7947839908b6b55f1e83caec1f6450afc1e13 (diff)
downloademacs-ec221d13b75a2fedd86911ab92e105262ac098ee.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