# HG changeset patch # User Glenn Morris # Date 1248151217 0 # Node ID cbe885d1446416487028d60034520c5c118adbaa # Parent bc30507da7f8af40d473bbe48cf469f33a9e93f3 Remove leading * from defcustom docs. (custom-print-vectors): Remove old comments from doc. diff -r bc30507da7f8 -r cbe885d14464 lisp/emacs-lisp/cust-print.el --- a/lisp/emacs-lisp/cust-print.el Tue Jul 21 04:38:21 2009 +0000 +++ b/lisp/emacs-lisp/cust-print.el Tue Jul 21 04:40:17 2009 +0000 @@ -1,7 +1,7 @@ ;;; cust-print.el --- handles print-level and print-circle -;; Copyright (C) 1992, 2001, 2002, 2003, 2004, 2005, -;; 2006, 2007, 2008, 2009 Free Software Foundation, Inc. +;; Copyright (C) 1992, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, +;; 2009 Free Software Foundation, Inc. ;; Author: Daniel LaLiberte ;; Adapted-By: ESR @@ -130,7 +130,7 @@ ;;This is defined by emacs.") (defcustom print-level nil - "*Controls how many levels deep a nested data object will print. + "Controls how many levels deep a nested data object will print. If nil, printing proceeds recursively and may lead to max-lisp-eval-depth being exceeded or an error may occur: @@ -146,7 +146,7 @@ (defcustom print-circle nil - "*Controls the printing of recursive structures. + "Controls the printing of recursive structures. If nil, printing proceeds recursively and may lead to `max-lisp-eval-depth' being exceeded or an error may occur: @@ -165,11 +165,7 @@ (defcustom custom-print-vectors nil - "*Non-nil if printing of vectors should obey print-level and print-length. - -For Emacs 18, setting print-level, or adding custom print list or -vector handling will make this happen anyway. Emacs 19 obeys -print-level, but not for vectors." + "Non-nil if printing of vectors should obey `print-level' and `print-length'." :type 'boolean :group 'cust-print)