aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuc Teirlinck2005-08-04 21:34:41 +0000
committerLuc Teirlinck2005-08-04 21:34:41 +0000
commit0f08b9564de2eaf4bf848e57b12b7731a38e36f2 (patch)
tree6fe6c1cdeca578e5a43139d2f3e393e6fde0d2da
parenteaf99616a20b2c732120354c880d443a0a69ba20 (diff)
downloademacs-0f08b9564de2eaf4bf848e57b12b7731a38e36f2.tar.gz
emacs-0f08b9564de2eaf4bf848e57b12b7731a38e36f2.zip
(all): Put undo.c where it alphabetically belongs.
-rw-r--r--lisp/cus-start.el28
1 files changed, 14 insertions, 14 deletions
diff --git a/lisp/cus-start.el b/lisp/cus-start.el
index b61275f4211..8094555b145 100644
--- a/lisp/cus-start.el
+++ b/lisp/cus-start.el
@@ -40,20 +40,6 @@
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, \
52the undo info for the current command never gets discarded.
53This should only be chosen under exceptional circumstances,
54since 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)
@@ -257,6 +243,20 @@ Leaving \"Default\" unchecked is equivalent with specifying a default of
257 (words-include-escapes editing-basics boolean) 243 (words-include-escapes editing-basics boolean)
258 (open-paren-in-column-0-is-defun-start editing-basics boolean 244 (open-paren-in-column-0-is-defun-start editing-basics boolean
259 "21.1") 245 "21.1")
246 ;; undo.c
247 (undo-limit undo integer)
248 (undo-strong-limit undo integer)
249 (undo-outer-limit undo
250 (choice integer
251 (const :tag "No limit"
252 :format "%t\n%d"
253 :doc
254 "With this choice, \
255the undo info for the current command never gets discarded.
256This should only be chosen under exceptional circumstances,
257since it could result in memory overflow and make Emacs crash."
258 nil))
259 "22.1")
260 ;; window.c 260 ;; window.c
261 (temp-buffer-show-function windows (choice (const nil) function)) 261 (temp-buffer-show-function windows (choice (const nil) function))
262 (display-buffer-function windows (choice (const nil) function)) 262 (display-buffer-function windows (choice (const nil) function))