diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2006-11-06 02:37:41 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2006-11-06 02:37:41 +0000 |
commit | d5c1122f2e0ac6d887cd5adf2564256cf3e402d5 (patch) | |
tree | 3089b84f11f28a8b50a7d3c86255a0294a77d828 /lisp/emacs-lisp/cust-print.el | |
parent | eff47a0d3fc5fe3ba0bb289f83379722dac957c1 (diff) | |
download | emacs-d5c1122f2e0ac6d887cd5adf2564256cf3e402d5.tar.gz |
(custom-print-install, custom-print-uninstall, custom-format):
Fix typos in docstrings.
Diffstat (limited to 'lisp/emacs-lisp/cust-print.el')
-rw-r--r-- | lisp/emacs-lisp/cust-print.el | 6 |
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." (defun custom-print-install () "Replace print functions with general, customizable, Lisp versions. -The emacs subroutines are saved away, and you can reinstall them +The Emacs subroutines are saved away, and you can reinstall them by running `custom-print-uninstall'." (interactive) (mapcar 'cust-print-set-function-cell @@ -271,7 +271,7 @@ by running `custom-print-uninstall'." t) (defun custom-print-uninstall () - "Reset print functions to their emacs subroutines." + "Reset print functions to their Emacs subroutines." (interactive) (mapcar 'cust-print-set-function-cell '((prin1 cust-print-original-prin1) @@ -375,7 +375,7 @@ The argument used by %s must be a string or a symbol; the argument used by %d, %b, %o, %x or %c must be a number. This is the custom-print replacement for the standard `format'. It -calls the emacs `format' after first making strings for list, +calls the Emacs `format' after first making strings for list, vector, or symbol args. The format specification for such args should be `%s' in any case, so a string argument will also work. The string is generated with `custom-prin1-to-string', which quotes quotable |