]> git.eshelyaron.com Git - emacs.git/commitdiff
; Move obsolete version variables further down
authorStefan Kangas <stefan@marxist.se>
Mon, 1 Feb 2021 15:03:10 +0000 (16:03 +0100)
committerStefan Kangas <stefan@marxist.se>
Tue, 2 Feb 2021 08:57:07 +0000 (09:57 +0100)
* lisp/dframe.el:
* lisp/speedbar.el: Move obsolete variables from the top of the file
to the bottom, where they don't obscure the license information.

lisp/dframe.el
lisp/speedbar.el

index 23cb6c5a920993b86d44fc14ebd41adacd32ec37..7ea5b3364e8ee4c88c60859ce02f4c2fdb184f17 100644 (file)
@@ -5,10 +5,6 @@
 ;; Author: Eric M. Ludlam <zappo@gnu.org>
 ;; Keywords: file, tags, tools
 
-(defvar dframe-version "1.3"
-  "The current version of the dedicated frame library.")
-(make-obsolete-variable 'dframe-version nil "28.1")
-
 ;; This file is part of GNU Emacs.
 
 ;; GNU Emacs is free software: you can redistribute it and/or modify
@@ -834,6 +830,13 @@ the mode-line."
          (t (dframe-message
              "Click on the edge of the mode line to scroll left/right")))))
 
+\f
+;;; Obsolete
+
+(defvar dframe-version "1.3"
+  "The current version of the dedicated frame library.")
+(make-obsolete-variable 'dframe-version nil "28.1")
+
 (provide 'dframe)
 
 ;;; dframe.el ends here
index 7f751ec3476793ffcb986452a1e89c5195340cd4..e43978f4137ee5011fadfdeb4c3a83dacfccccee 100644 (file)
@@ -5,15 +5,6 @@
 ;; Author: Eric M. Ludlam <zappo@gnu.org>
 ;; Keywords: file, tags, tools
 
-(defvar speedbar-version "1.0"
-  "The current version of speedbar.")
-(make-obsolete-variable 'speedbar-version nil "28.1")
-(defvar speedbar-incompatible-version "0.14beta4"
-  "This version of speedbar is incompatible with this version.
-Due to massive API changes (removing the use of the word PATH)
-this version is not backward compatible to 0.14 or earlier.")
-(make-obsolete-variable 'speedbar-incompatible-version nil "28.1")
-
 ;; This file is part of GNU Emacs.
 
 ;; GNU Emacs is free software: you can redistribute it and/or modify
@@ -4086,6 +4077,19 @@ See `speedbar-expand-image-button-alist' for details."
            (insert (car (car ia)) "\t" (format "%s" (cdr (car ia))) "\n"))
          (setq ia (cdr ia)))))))
 
+\f
+;; Obsolete
+
+(defvar speedbar-version "1.0"
+  "The current version of speedbar.")
+(make-obsolete-variable 'speedbar-version 'emacs-version "28.1")
+
+(defvar speedbar-incompatible-version "0.14beta4"
+  "This version of speedbar is incompatible with this version.
+Due to massive API changes (removing the use of the word PATH)
+this version is not backward compatible to 0.14 or earlier.")
+(make-obsolete-variable 'speedbar-incompatible-version nil "28.1")
+
 \f
 (provide 'speedbar)