aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2006-11-06 02:37:41 +0000
committerJuanma Barranquero2006-11-06 02:37:41 +0000
commitd5c1122f2e0ac6d887cd5adf2564256cf3e402d5 (patch)
tree3089b84f11f28a8b50a7d3c86255a0294a77d828
parenteff47a0d3fc5fe3ba0bb289f83379722dac957c1 (diff)
downloademacs-d5c1122f2e0ac6d887cd5adf2564256cf3e402d5.tar.gz
emacs-d5c1122f2e0ac6d887cd5adf2564256cf3e402d5.zip
(custom-print-install, custom-print-uninstall, custom-format):
Fix typos in docstrings.
-rw-r--r--lisp/emacs-lisp/cust-print.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/cust-print.el b/lisp/emacs-lisp/cust-print.el
index 332ea81932e..f37a5348552 100644
--- a/lisp/emacs-lisp/cust-print.el
+++ b/lisp/emacs-lisp/cust-print.el
@@ -256,7 +256,7 @@ Any pair that has the same PREDICATE is first removed."
256 256
257(defun custom-print-install () 257(defun custom-print-install ()
258 "Replace print functions with general, customizable, Lisp versions. 258 "Replace print functions with general, customizable, Lisp versions.
259The emacs subroutines are saved away, and you can reinstall them 259The Emacs subroutines are saved away, and you can reinstall them
260by running `custom-print-uninstall'." 260by running `custom-print-uninstall'."
261 (interactive) 261 (interactive)
262 (mapcar 'cust-print-set-function-cell 262 (mapcar 'cust-print-set-function-cell
@@ -271,7 +271,7 @@ by running `custom-print-uninstall'."
271 t) 271 t)
272 272
273(defun custom-print-uninstall () 273(defun custom-print-uninstall ()
274 "Reset print functions to their emacs subroutines." 274 "Reset print functions to their Emacs subroutines."
275 (interactive) 275 (interactive)
276 (mapcar 'cust-print-set-function-cell 276 (mapcar 'cust-print-set-function-cell
277 '((prin1 cust-print-original-prin1) 277 '((prin1 cust-print-original-prin1)
@@ -375,7 +375,7 @@ The argument used by %s must be a string or a symbol;
375the argument used by %d, %b, %o, %x or %c must be a number. 375the argument used by %d, %b, %o, %x or %c must be a number.
376 376
377This is the custom-print replacement for the standard `format'. It 377This is the custom-print replacement for the standard `format'. It
378calls the emacs `format' after first making strings for list, 378calls the Emacs `format' after first making strings for list,
379vector, or symbol args. The format specification for such args should 379vector, or symbol args. The format specification for such args should
380be `%s' in any case, so a string argument will also work. The string 380be `%s' in any case, so a string argument will also work. The string
381is generated with `custom-prin1-to-string', which quotes quotable 381is generated with `custom-prin1-to-string', which quotes quotable