aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2009-07-21 04:40:17 +0000
committerGlenn Morris2009-07-21 04:40:17 +0000
commit4befa5993f2101fadd1baef3480d353a538a14c9 (patch)
treedf50167bf01e3400d3eddf1777702529aaeca607
parent0c06a6a6fd74fa552ffcbe06fd916bafac18587e (diff)
downloademacs-4befa5993f2101fadd1baef3480d353a538a14c9.tar.gz
emacs-4befa5993f2101fadd1baef3480d353a538a14c9.zip
Remove leading * from defcustom docs.
(custom-print-vectors): Remove old comments from doc.
-rw-r--r--lisp/emacs-lisp/cust-print.el14
1 files changed, 5 insertions, 9 deletions
diff --git a/lisp/emacs-lisp/cust-print.el b/lisp/emacs-lisp/cust-print.el
index 2913eaf6095..f3a571d5b3f 100644
--- a/lisp/emacs-lisp/cust-print.el
+++ b/lisp/emacs-lisp/cust-print.el
@@ -1,7 +1,7 @@
1;;; cust-print.el --- handles print-level and print-circle 1;;; cust-print.el --- handles print-level and print-circle
2 2
3;; Copyright (C) 1992, 2001, 2002, 2003, 2004, 2005, 3;; Copyright (C) 1992, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
4;; 2006, 2007, 2008, 2009 Free Software Foundation, Inc. 4;; 2009 Free Software Foundation, Inc.
5 5
6;; Author: Daniel LaLiberte <liberte@holonexus.org> 6;; Author: Daniel LaLiberte <liberte@holonexus.org>
7;; Adapted-By: ESR 7;; Adapted-By: ESR
@@ -130,7 +130,7 @@
130;;This is defined by emacs.") 130;;This is defined by emacs.")
131 131
132(defcustom print-level nil 132(defcustom print-level nil
133 "*Controls how many levels deep a nested data object will print. 133 "Controls how many levels deep a nested data object will print.
134 134
135If nil, printing proceeds recursively and may lead to 135If nil, printing proceeds recursively and may lead to
136max-lisp-eval-depth being exceeded or an error may occur: 136max-lisp-eval-depth being exceeded or an error may occur:
@@ -146,7 +146,7 @@ level 1."
146 146
147 147
148(defcustom print-circle nil 148(defcustom print-circle nil
149 "*Controls the printing of recursive structures. 149 "Controls the printing of recursive structures.
150 150
151If nil, printing proceeds recursively and may lead to 151If nil, printing proceeds recursively and may lead to
152`max-lisp-eval-depth' being exceeded or an error may occur: 152`max-lisp-eval-depth' being exceeded or an error may occur:
@@ -165,11 +165,7 @@ but if you need to do so, try the cl-read.el package."
165 165
166 166
167(defcustom custom-print-vectors nil 167(defcustom custom-print-vectors nil
168 "*Non-nil if printing of vectors should obey print-level and print-length. 168 "Non-nil if printing of vectors should obey `print-level' and `print-length'."
169
170For Emacs 18, setting print-level, or adding custom print list or
171vector handling will make this happen anyway. Emacs 19 obeys
172print-level, but not for vectors."
173 :type 'boolean 169 :type 'boolean
174 :group 'cust-print) 170 :group 'cust-print)
175 171