diff options
author | Stefan Kangas <stefan@marxist.se> | 2020-10-20 19:31:40 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2020-10-25 18:27:19 +0100 |
commit | 158d2a1f50cfe233af83aa93501f51c9986918f3 (patch) | |
tree | d99b89b0b145cc0e98f4b35e59612ec30ba8a491 /lisp/forms.el | |
parent | 8164f3e1ab3ca8d28f782407ab8daf086a624d1a (diff) | |
download | emacs-158d2a1f50cfe233af83aa93501f51c9986918f3.tar.gz emacs-158d2a1f50cfe233af83aa93501f51c9986918f3.tar.bz2 emacs-158d2a1f50cfe233af83aa93501f51c9986918f3.zip |
Remove some Emacs 19 compat code and references
* lisp/progmodes/sql.el:
* lisp/mh-e/mh-show.el (mh-display-msg): Remove Emacs 19 compat code.
* lisp/emacs-lisp/edebug.el (edebug-mark-marker): Make into
obsolete alias for mark-marker.
(edebug--display-1, edebug-bounce-point)
(edebug-outside-excursion): Adjust callers.
* lisp/net/snmp-mode.el:
* lisp/forms.el: Remove references to Emacs 19.
(forms-use-text-properties): Doc fix.
Diffstat (limited to 'lisp/forms.el')
-rw-r--r-- | lisp/forms.el | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/lisp/forms.el b/lisp/forms.el index e9242ce4cb8..8974f99ef57 100644 --- a/lisp/forms.el +++ b/lisp/forms.el @@ -168,10 +168,9 @@ ;; modified (using text-property `read-only'). ;; Also, the read-write fields are shown using a ;; distinct face, if possible. -;; As of emacs 19.29, the `intangible' text property -;; is used to prevent moving into read-only fields. -;; This variable defaults to t if running Emacs 19 or -;; later with text properties. +;; The `intangible' text property is used to +;; prevent moving into read-only fields. +;; This variable defaults to t. ;; The default face to show read-write fields is ;; copied from face `region'. ;; @@ -363,8 +362,7 @@ This variable is for use by the filter routines only. The contents may NOT be modified.") (defcustom forms-use-text-properties t - "Non-nil means: use text properties. -Defaults to t if this Emacs is capable of handling text properties." + "Non-nil means to use text properties. " :group 'forms :type 'boolean) |