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/cc-langs.el


From: Martin Stjernholm
Subject: [Emacs-diffs] Changes to emacs/lisp/progmodes/cc-langs.el
Date: Sat, 05 Jul 2003 15:54:33 -0400

Index: emacs/lisp/progmodes/cc-langs.el
diff -c emacs/lisp/progmodes/cc-langs.el:1.23 
emacs/lisp/progmodes/cc-langs.el:1.24
*** emacs/lisp/progmodes/cc-langs.el:1.23       Thu Jul  3 08:30:59 2003
--- emacs/lisp/progmodes/cc-langs.el    Sat Jul  5 15:54:33 2003
***************
*** 131,138 ****
    ;; These are used to collect the init forms from the subsequent
    ;; `c-lang-defvar'.  They are used to build the lambda in
    ;; `c-make-init-lang-vars-fun' below.
!   (defconst c-lang-variable-inits (list nil))
!   (defconst c-lang-variable-inits-tail c-lang-variable-inits))
  
  (defmacro c-lang-defvar (var val &optional doc)
    "Declares the buffer local variable VAR to get the value VAL at mode
--- 131,140 ----
    ;; These are used to collect the init forms from the subsequent
    ;; `c-lang-defvar'.  They are used to build the lambda in
    ;; `c-make-init-lang-vars-fun' below.
!   (defvar c-lang-variable-inits nil)
!   (defvar c-lang-variable-inits-tail nil)
!   (setq c-lang-variable-inits (list nil)
!       c-lang-variable-inits-tail c-lang-variable-inits))
  
  (defmacro c-lang-defvar (var val &optional doc)
    "Declares the buffer local variable VAR to get the value VAL at mode




reply via email to

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