summaryrefslogtreecommitdiff
path: root/lisp/emulation/edt.el
diff options
context:
space:
mode:
authorStefan Kangas <stefan@marxist.se>2021-03-31 18:17:15 +0200
committerStefan Kangas <stefan@marxist.se>2021-04-01 01:27:38 +0200
commitc59dedcdf17530d22931ec6c8f92215971af09ba (patch)
tree5545f8fe7c3a5ad4a7c1e85190e58bfb09eb7144 /lisp/emulation/edt.el
parent4f595cca575f6065f5b866402810a673c7fdf38d (diff)
downloademacs-c59dedcdf17530d22931ec6c8f92215971af09ba.tar.gz
Use emacs-version instead of obsolete version variables
* lisp/calendar/icalendar.el (icalendar-version): * lisp/dframe.el (dframe-version): * lisp/emacs-lisp/checkdoc.el (checkdoc-version): * lisp/emulation/edt.el (edt-version): * lisp/international/mule.el (mule-version): * lisp/linum.el (linum-version): * lisp/play/bubbles.el (bubbles-version): * lisp/textmodes/remember.el (remember-version): * lisp/url/url-vars.el (url-version): * lisp/woman.el (woman-version): Use emacs-version instead of obsolete version variables.
Diffstat (limited to 'lisp/emulation/edt.el')
-rw-r--r--lisp/emulation/edt.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/emulation/edt.el b/lisp/emulation/edt.el
index 50979c4dbb3..f11afb1d02d 100644
--- a/lisp/emulation/edt.el
+++ b/lisp/emulation/edt.el
@@ -178,9 +178,6 @@
(defvar edt-user-global-map)
(defvar rect-start-point)
-(defconst edt-version "4.0" "EDT Emulation version number.")
-(make-obsolete-variable 'edt-version nil "28.1")
-
;;;
;;; User Configurable Variables
;;;
@@ -2533,6 +2530,9 @@ G-C-\\: Split Window | FNDNXT | Yank | CUT |
(set-frame-width nil 132)
(message "Terminal width 132"))
+(defconst edt-version "4.0" "EDT Emulation version number.")
+(make-obsolete-variable 'edt-version 'emacs-version "28.1")
+
(provide 'edt)
;;; edt.el ends here