aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/allout.el
diff options
context:
space:
mode:
authorStefan Kangas2020-08-24 03:28:48 +0200
committerStefan Kangas2020-08-24 04:09:47 +0200
commit326fdb9ec05ab5e4aec0c7064272bb3d223e9875 (patch)
tree115493095100cb5e2628263868bc2265aeb7dfc7 /lisp/allout.el
parent631c73b28010dd80c7c909a291d356ab91ea2eae (diff)
downloademacs-326fdb9ec05ab5e4aec0c7064272bb3d223e9875.tar.gz
emacs-326fdb9ec05ab5e4aec0c7064272bb3d223e9875.zip
Remove many items obsolete since Emacs 23.2 and 23.3
* lisp/allout.el (allout-init): * lisp/emacs-lisp/shadow.el (shadows-compare-text-p): * lisp/ffap.el (ffap-version): * lisp/filecache.el (file-cache-choose-completion): * lisp/help.el (print-help-return-message): * lisp/image-mode.el (image-mode-maybe): * lisp/imenu.el (imenu-example--name-and-position): * lisp/international/mule-cmds.el (princ-list): * lisp/mail/rmail.el (rmail-highlight-face): * lisp/minibuffer.el (read-file-name-predicate): * lisp/mouse.el (mouse-choose-completion): * lisp/progmodes/cc-cmds.el (c-forward-into-nomenclature): * lisp/progmodes/xscheme.el (advertised-xscheme-send-previous-expression): * lisp/simple.el (completion-base-size) (choose-completion-delete-max-match, exchange-dot-and-mark): * lisp/subr.el (eval-next-after-load): * lisp/term.el (term-dynamic-simple-complete): Remove items, obsolete since Emacs 23.2 and 23.3. * doc/misc/cc-mode.texi (Movement Commands): Doc fix. * doc/lispref/help.texi (Accessing Documentation): * lisp/emacs-lisp/edebug.el (edebug-wrap-def-body): * lisp/comint.el (comint-dynamic-list-completions): * lisp/progmodes/idlwave.el (idlwave-make-modified-completion-map-xemacs) (idlwave-make-modified-completion-map-emacs) (idlwave-choose-completion): * lisp/progmodes/vhdl-mode.el: * lisp/term.el (term-dynamic-list-completions): Remove references to 'mouse-choose-completion'. * lisp/image-mode.el (image-mode-to-text): Remove reference to 'image-mode-maybe'. * lisp/mail/rmail.el (rmail-highlight-headers): Use 'rmail-highlight' face instead of 'rmail-highlight-face'. * lisp/progmodes/antlr-mode.el (antlr-mode-map, antlr-mode-menu): Remove reference to 'c-forward-into-nomenclature'. * lisp/simple.el (choose-completion, choose-completion-string) (completion-list-mode, completion-setup-function): Don't use 'completion-base-size'. ; * etc/NEWS: List removed items. This was discussed in https://lists.gnu.org/archive/html/emacs-devel/2020-08/msg00400.html
Diffstat (limited to 'lisp/allout.el')
-rw-r--r--lisp/allout.el15
1 files changed, 1 insertions, 14 deletions
diff --git a/lisp/allout.el b/lisp/allout.el
index 05d9153a31d..955b7000cbf 100644
--- a/lisp/allout.el
+++ b/lisp/allout.el
@@ -62,8 +62,7 @@
62;; The outline menubar additions provide quick reference to many of the 62;; The outline menubar additions provide quick reference to many of the
63;; features. See the docstring of the variables `allout-layout' and 63;; features. See the docstring of the variables `allout-layout' and
64;; `allout-auto-activation' for details on automatic activation of 64;; `allout-auto-activation' for details on automatic activation of
65;; `allout-mode' as a minor mode. (`allout-init' is deprecated in favor of 65;; `allout-mode' as a minor mode.
66;; a purely customization-based method.)
67;; 66;;
68;; Note -- the lines beginning with `;;;_' are outline topic headers. 67;; Note -- the lines beginning with `;;;_' are outline topic headers.
69;; Customize `allout-auto-activation' to enable, then revisit this 68;; Customize `allout-auto-activation' to enable, then revisit this
@@ -1627,18 +1626,6 @@ non-nil in a lasting way.")
1627 "If t, `allout-mode's last deactivation was deliberate. 1626 "If t, `allout-mode's last deactivation was deliberate.
1628So `allout-post-command-business' should not reactivate it...") 1627So `allout-post-command-business' should not reactivate it...")
1629(make-variable-buffer-local 'allout-explicitly-deactivated) 1628(make-variable-buffer-local 'allout-explicitly-deactivated)
1630;;;_ > allout-init (mode)
1631(defun allout-init (mode)
1632 "DEPRECATED - configure allout activation by customizing
1633`allout-auto-activation'. This function remains around, limited
1634from what it did before, for backwards compatibility.
1635
1636MODE is the activation mode - see `allout-auto-activation' for
1637valid values."
1638 (declare (obsolete allout-auto-activation "23.3"))
1639 (customize-set-variable 'allout-auto-activation (format "%s" mode))
1640 (format "%s" mode))
1641
1642;;;_ > allout-setup-menubar () 1629;;;_ > allout-setup-menubar ()
1643(defun allout-setup-menubar () 1630(defun allout-setup-menubar ()
1644 "Populate the current buffer's menubar with `allout-mode' stuff." 1631 "Populate the current buffer's menubar with `allout-mode' stuff."