diff options
| author | Thien-Thi Nguyen | 2005-08-15 13:54:33 +0000 |
|---|---|---|
| committer | Thien-Thi Nguyen | 2005-08-15 13:54:33 +0000 |
| commit | 9e5538bc21b270a25be7d447a079cc95761e71f5 (patch) | |
| tree | c9e4e23d18fd67b1fb39c05439e447ef7a0c7b2f | |
| parent | 0cfce69f6e359aded65cb59eeab914767435c38e (diff) | |
| download | emacs-9e5538bc21b270a25be7d447a079cc95761e71f5.tar.gz emacs-9e5538bc21b270a25be7d447a079cc95761e71f5.zip | |
(vhdl-emacs-21): Set t for Emacs 21, 22, and so on.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/progmodes/vhdl-mode.el | 10 |
2 files changed, 10 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5f11a65dc40..221ea1e6b3e 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2005-08-15 Thien-Thi Nguyen <ttn@gnu.org> | ||
| 2 | |||
| 3 | * progmodes/vhdl-mode.el (vhdl-emacs-21): | ||
| 4 | Set t for Emacs 21, 22, and so on. | ||
| 5 | |||
| 1 | 2005-08-15 David Ponce <david@dponce.com> | 6 | 2005-08-15 David Ponce <david@dponce.com> |
| 2 | 7 | ||
| 3 | * tree-widget.el Update Commentary header. | 8 | * tree-widget.el Update Commentary header. |
diff --git a/lisp/progmodes/vhdl-mode.el b/lisp/progmodes/vhdl-mode.el index de5f3ebabd7..75f2bb56aa4 100644 --- a/lisp/progmodes/vhdl-mode.el +++ b/lisp/progmodes/vhdl-mode.el | |||
| @@ -66,13 +66,13 @@ | |||
| 66 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 66 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
| 67 | ;; Emacs Versions | 67 | ;; Emacs Versions |
| 68 | 68 | ||
| 69 | ;; supported: GNU Emacs 20.X/21.X, XEmacs 20.X/21.X | 69 | ;; supported: GNU Emacs 20.X/21.X/22.X, XEmacs 20.X/21.X |
| 70 | ;; tested on: GNU Emacs 20.4, XEmacs 21.1 (marginally) | 70 | ;; tested on: GNU Emacs 20.4, XEmacs 21.1 (marginally) |
| 71 | 71 | ||
| 72 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 72 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
| 73 | ;; Installation | 73 | ;; Installation |
| 74 | 74 | ||
| 75 | ;; Prerequisites: GNU Emacs 20.X/21.X, XEmacs 20.X/21.X. | 75 | ;; Prerequisites: GNU Emacs 20.X/21.X/22.X, XEmacs 20.X/21.X. |
| 76 | 76 | ||
| 77 | ;; Put `vhdl-mode.el' into the `site-lisp' directory of your Emacs installation | 77 | ;; Put `vhdl-mode.el' into the `site-lisp' directory of your Emacs installation |
| 78 | ;; or into an arbitrary directory that is added to the load path by the | 78 | ;; or into an arbitrary directory that is added to the load path by the |
| @@ -124,9 +124,9 @@ | |||
| 124 | ;; XEmacs handling | 124 | ;; XEmacs handling |
| 125 | (defconst vhdl-xemacs (string-match "XEmacs" emacs-version) | 125 | (defconst vhdl-xemacs (string-match "XEmacs" emacs-version) |
| 126 | "Non-nil if XEmacs is used.") | 126 | "Non-nil if XEmacs is used.") |
| 127 | ;; Emacs 21 handling | 127 | ;; Emacs 21+ handling |
| 128 | (defconst vhdl-emacs-21 (and (= emacs-major-version 21) (not vhdl-xemacs)) | 128 | (defconst vhdl-emacs-21 (and (<= 21 emacs-major-version) (not vhdl-xemacs)) |
| 129 | "Non-nil if Emacs 21 is used.") | 129 | "Non-nil if Emacs 21, 22, ... is used.") |
| 130 | 130 | ||
| 131 | 131 | ||
| 132 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 132 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |