comparison lisp/cus-start.el @ 90223:edf295560b5a

Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-77 Merge from emacs--cvs-trunk--0 Patches applied: * emacs--cvs-trunk--0 (patch 504-513) - Update from CVS - Merge from gnus--rel--5.10 - Update from CVS: .cvsignore: Add `lock'. * gnus--rel--5.10 (patch 99-103) - Update from CVS
author Miles Bader <miles@gnu.org>
date Fri, 05 Aug 2005 10:57:36 +0000
parents fbb2bea03df9 b991ecaae196
children 2d92f5c9d6ae
comparison
equal deleted inserted replaced
90222:709f27353024 90223:edf295560b5a
38 (abbrev-all-caps abbrev-mode boolean) 38 (abbrev-all-caps abbrev-mode boolean)
39 (pre-abbrev-expand-hook abbrev-mode hook) 39 (pre-abbrev-expand-hook abbrev-mode hook)
40 ;; alloc.c 40 ;; alloc.c
41 (gc-cons-threshold alloc integer) 41 (gc-cons-threshold alloc integer)
42 (garbage-collection-messages alloc boolean) 42 (garbage-collection-messages alloc boolean)
43 ;; undo.c
44 (undo-limit undo integer)
45 (undo-strong-limit undo integer)
46 (undo-outer-limit undo
47 (choice integer
48 (const :tag "No limit"
49 :format "%t\n%d"
50 :doc
51 "With this choice, \
52 the undo info for the current command never gets discarded.
53 This should only be chosen under exceptional circumstances,
54 since it could result in memory overflow and make Emacs crash."
55 nil))
56 "22.1")
57 ;; buffer.c 43 ;; buffer.c
58 (mode-line-format modeline sexp) ;Hard to do right. 44 (mode-line-format modeline sexp) ;Hard to do right.
59 (default-major-mode internal function) 45 (default-major-mode internal function)
60 (enable-multibyte-characters mule boolean) 46 (enable-multibyte-characters mule boolean)
61 (case-fold-search matching boolean) 47 (case-fold-search matching boolean)
63 (left-margin fill integer) 49 (left-margin fill integer)
64 (tab-width editing-basics integer) 50 (tab-width editing-basics integer)
65 (ctl-arrow display boolean) 51 (ctl-arrow display boolean)
66 (truncate-lines display boolean) 52 (truncate-lines display boolean)
67 (selective-display-ellipses display boolean) 53 (selective-display-ellipses display boolean)
68 (indicate-empty-lines display boolean "21.1") 54 (indicate-empty-lines fringe boolean "21.1")
55 (indicate-buffer-boundaries
56 fringe
57 (choice
58 (const :tag "No indicators" nil)
59 (const :tag "On left, with arrows" left)
60 (const :tag "On right, with arrows" right)
61 (set :tag "Pick your own design"
62 :value ((t . nil))
63 :format "%{%t%}:\n%v\n%d"
64 :doc "You can specify a default and then override it \
65 for individual indicators.
66 Leaving \"Default\" unchecked is equivalent with specifying a default of
67 \"Do not show\"."
68 (choice :tag "Default"
69 :value (t . nil)
70 (const :tag "Do not show" (t . nil))
71 (const :tag "On the left" (t . left))
72 (const :tag "On the right" (t . right)))
73 (choice :tag "Top"
74 :value (top . left)
75 (const :tag "Do not show" (top . nil))
76 (const :tag "On the left" (top . left))
77 (const :tag "On the right" (top . right)))
78 (choice :tag "Bottom"
79 :value (bottom . left)
80 (const :tag "Do not show" (bottom . nil))
81 (const :tag "On the left" (bottom . left))
82 (const :tag "On the right" (bottom . right)))
83 (choice :tag "Up arrow"
84 :value (up . left)
85 (const :tag "Do not show" (up . nil))
86 (const :tag "On the left" (up . left))
87 (const :tag "On the right" (up . right)))
88 (choice :tag "Down arrow"
89 :value (down . left)
90 (const :tag "Do not show" (down . nil))
91 (const :tag "On the left" (down . left))
92 (const :tag "On the right" (down . right))))
93 (other :tag "On left, no arrows" t))
94 "22.1")
69 (scroll-up-aggressively windows 95 (scroll-up-aggressively windows
70 (choice (const :tag "off" nil) number) 96 (choice (const :tag "off" nil) number)
71 "21.1") 97 "21.1")
72 (scroll-down-aggressively windows 98 (scroll-down-aggressively windows
73 (choice (const :tag "off" nil) number) 99 (choice (const :tag "off" nil) number)
218 ;; syntax.c 244 ;; syntax.c
219 (parse-sexp-ignore-comments editing-basics boolean) 245 (parse-sexp-ignore-comments editing-basics boolean)
220 (words-include-escapes editing-basics boolean) 246 (words-include-escapes editing-basics boolean)
221 (open-paren-in-column-0-is-defun-start editing-basics boolean 247 (open-paren-in-column-0-is-defun-start editing-basics boolean
222 "21.1") 248 "21.1")
249 ;; undo.c
250 (undo-limit undo integer)
251 (undo-strong-limit undo integer)
252 (undo-outer-limit undo
253 (choice integer
254 (const :tag "No limit"
255 :format "%t\n%d"
256 :doc
257 "With this choice, \
258 the undo info for the current command never gets discarded.
259 This should only be chosen under exceptional circumstances,
260 since it could result in memory overflow and make Emacs crash."
261 nil))
262 "22.1")
223 ;; window.c 263 ;; window.c
224 (temp-buffer-show-function windows (choice (const nil) function)) 264 (temp-buffer-show-function windows (choice (const nil) function))
225 (display-buffer-function windows (choice (const nil) function)) 265 (display-buffer-function windows (choice (const nil) function))
226 (pop-up-frames frames boolean) 266 (pop-up-frames frames boolean)
227 (pop-up-frame-function frames function) 267 (pop-up-frame-function frames function)