summaryrefslogtreecommitdiff
path: root/lisp/cus-start.el
diff options
context:
space:
mode:
authorLuc Teirlinck <teirllm@auburn.edu>2005-08-04 21:34:41 +0000
committerLuc Teirlinck <teirllm@auburn.edu>2005-08-04 21:34:41 +0000
commit0f08b9564de2eaf4bf848e57b12b7731a38e36f2 (patch)
tree6fe6c1cdeca578e5a43139d2f3e393e6fde0d2da /lisp/cus-start.el
parenteaf99616a20b2c732120354c880d443a0a69ba20 (diff)
downloademacs-0f08b9564de2eaf4bf848e57b12b7731a38e36f2.tar.gz
(all): Put undo.c where it alphabetically belongs.
Diffstat (limited to 'lisp/cus-start.el')
-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 @@
;; alloc.c
(gc-cons-threshold alloc integer)
(garbage-collection-messages alloc boolean)
- ;; undo.c
- (undo-limit undo integer)
- (undo-strong-limit undo integer)
- (undo-outer-limit undo
- (choice integer
- (const :tag "No limit"
- :format "%t\n%d"
- :doc
- "With this choice, \
-the undo info for the current command never gets discarded.
-This should only be chosen under exceptional circumstances,
-since it could result in memory overflow and make Emacs crash."
- nil))
- "22.1")
;; buffer.c
(mode-line-format modeline sexp) ;Hard to do right.
(default-major-mode internal function)
@@ -257,6 +243,20 @@ Leaving \"Default\" unchecked is equivalent with specifying a default of
(words-include-escapes editing-basics boolean)
(open-paren-in-column-0-is-defun-start editing-basics boolean
"21.1")
+ ;; undo.c
+ (undo-limit undo integer)
+ (undo-strong-limit undo integer)
+ (undo-outer-limit undo
+ (choice integer
+ (const :tag "No limit"
+ :format "%t\n%d"
+ :doc
+ "With this choice, \
+the undo info for the current command never gets discarded.
+This should only be chosen under exceptional circumstances,
+since it could result in memory overflow and make Emacs crash."
+ nil))
+ "22.1")
;; window.c
(temp-buffer-show-function windows (choice (const nil) function))
(display-buffer-function windows (choice (const nil) function))