emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/progmodes/vhdl-mode.el


From: Thien-Thi Nguyen
Subject: [Emacs-diffs] Changes to emacs/lisp/progmodes/vhdl-mode.el
Date: Mon, 15 Aug 2005 09:52:56 -0400

Index: emacs/lisp/progmodes/vhdl-mode.el
diff -c emacs/lisp/progmodes/vhdl-mode.el:1.40 
emacs/lisp/progmodes/vhdl-mode.el:1.41
*** emacs/lisp/progmodes/vhdl-mode.el:1.40      Tue Aug  9 11:44:56 2005
--- emacs/lisp/progmodes/vhdl-mode.el   Mon Aug 15 13:52:55 2005
***************
*** 66,78 ****
  
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  ;; Emacs Versions
  
! ;; supported: GNU Emacs 20.X/21.X, XEmacs 20.X/21.X
  ;; tested on: GNU Emacs 20.4, XEmacs 21.1 (marginally)
  
  
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  ;; Installation
  
! ;; Prerequisites:  GNU Emacs 20.X/21.X, XEmacs 20.X/21.X.
  
  ;; Put `vhdl-mode.el' into the `site-lisp' directory of your Emacs 
installation
  ;; or into an arbitrary directory that is added to the load path by the
--- 66,78 ----
  
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  ;; Emacs Versions
  
! ;; supported: GNU Emacs 20.X/21.X/22.X, XEmacs 20.X/21.X
  ;; tested on: GNU Emacs 20.4, XEmacs 21.1 (marginally)
  
  
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  ;; Installation
  
! ;; Prerequisites:  GNU Emacs 20.X/21.X/22.X, XEmacs 20.X/21.X.
  
  ;; Put `vhdl-mode.el' into the `site-lisp' directory of your Emacs 
installation
  ;; or into an arbitrary directory that is added to the load path by the
***************
*** 124,132 ****
  ;; XEmacs handling
  (defconst vhdl-xemacs (string-match "XEmacs" emacs-version)
    "Non-nil if XEmacs is used.")
! ;; Emacs 21 handling
! (defconst vhdl-emacs-21 (and (= emacs-major-version 21) (not vhdl-xemacs))
!   "Non-nil if Emacs 21 is used.")
  
  
  
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
--- 124,132 ----
  ;; XEmacs handling
  (defconst vhdl-xemacs (string-match "XEmacs" emacs-version)
    "Non-nil if XEmacs is used.")
! ;; Emacs 21+ handling
! (defconst vhdl-emacs-21 (and (<= 21 emacs-major-version) (not vhdl-xemacs))
!   "Non-nil if Emacs 21, 22, ... is used.")
  
  
  
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;




reply via email to

[Prev in Thread] Current Thread [Next in Thread]