aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2011-03-14 22:46:18 -0400
committerStefan Monnier2011-03-14 22:46:18 -0400
commitc6eee9aa8d8a7dc5ec7469981a80d825554a5f6f (patch)
tree5f9b39326d6ca42bee2eed752f34429601d2356b
parentaa2ebce9fc5b7c393d57be41db70d2b3cc087fb8 (diff)
downloademacs-c6eee9aa8d8a7dc5ec7469981a80d825554a5f6f.tar.gz
emacs-c6eee9aa8d8a7dc5ec7469981a80d825554a5f6f.zip
* lisp/allout.el (allout-abbreviate-flattened-numbering)
(allout-mode-deactivate-hook): Fix up obsolescence "date".
-rw-r--r--lisp/ChangeLog3
-rw-r--r--lisp/allout.el5
2 files changed, 6 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 4bcb1117b1c..b62d061fe7b 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,8 @@
12011-03-15 Stefan Monnier <monnier@iro.umontreal.ca> 12011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
2 2
3 * allout.el (allout-abbreviate-flattened-numbering)
4 (allout-mode-deactivate-hook): Fix up obsolescence "date".
5
3 * subr.el (read-char-choice): Only show the cursor after the prompt, 6 * subr.el (read-char-choice): Only show the cursor after the prompt,
4 not after the answer. 7 not after the answer.
5 8
diff --git a/lisp/allout.el b/lisp/allout.el
index 91eaa28fdaf..a12101ea9a5 100644
--- a/lisp/allout.el
+++ b/lisp/allout.el
@@ -310,6 +310,7 @@ Auto-layout is not.
310 310
311With value nil, inhibit any automatic allout-mode activation." 311With value nil, inhibit any automatic allout-mode activation."
312 :set 'allout-auto-activation-helper 312 :set 'allout-auto-activation-helper
313 ;; FIXME: Using strings here is unusual and less efficient than symbols.
313 :type '(choice (const :tag "On" t) 314 :type '(choice (const :tag "On" t)
314 (const :tag "Ask about layout" "ask") 315 (const :tag "Ask about layout" "ask")
315 (const :tag "Mode only" "activate") 316 (const :tag "Mode only" "activate")
@@ -752,7 +753,7 @@ Set this var to the bullet you want to use for file cross-references."
752 753
753;;;_ = allout-flattened-numbering-abbreviation 754;;;_ = allout-flattened-numbering-abbreviation
754(define-obsolete-variable-alias 'allout-abbreviate-flattened-numbering 755(define-obsolete-variable-alias 'allout-abbreviate-flattened-numbering
755 'allout-flattened-numbering-abbreviation "24.0") 756 'allout-flattened-numbering-abbreviation "24.1")
756(defcustom allout-flattened-numbering-abbreviation nil 757(defcustom allout-flattened-numbering-abbreviation nil
757 "If non-nil, `allout-flatten-exposed-to-buffer' abbreviates topic 758 "If non-nil, `allout-flatten-exposed-to-buffer' abbreviates topic
758numbers to minimal amount with some context. Otherwise, entire 759numbers to minimal amount with some context. Otherwise, entire
@@ -1402,7 +1403,7 @@ their settings before allout-mode was started."
1402(defvar allout-mode-deactivate-hook nil 1403(defvar allout-mode-deactivate-hook nil
1403 "*Hook that's run when allout mode ends.") 1404 "*Hook that's run when allout mode ends.")
1404(define-obsolete-variable-alias 'allout-mode-deactivate-hook 1405(define-obsolete-variable-alias 'allout-mode-deactivate-hook
1405 'allout-mode-off-hook "future") 1406 'allout-mode-off-hook "24.1")
1406;;;_ = allout-exposure-category 1407;;;_ = allout-exposure-category
1407(defvar allout-exposure-category nil 1408(defvar allout-exposure-category nil
1408 "Symbol for use as allout invisible-text overlay category.") 1409 "Symbol for use as allout invisible-text overlay category.")