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/hideif.el


From: Stefan Monnier
Subject: [Emacs-diffs] Changes to emacs/lisp/progmodes/hideif.el
Date: Sat, 01 Dec 2001 13:20:52 -0500

Index: emacs/lisp/progmodes/hideif.el
diff -c emacs/lisp/progmodes/hideif.el:1.44 emacs/lisp/progmodes/hideif.el:1.45
*** emacs/lisp/progmodes/hideif.el:1.44 Fri Nov 30 18:58:24 2001
--- emacs/lisp/progmodes/hideif.el      Sat Dec  1 13:20:52 2001
***************
*** 354,359 ****
--- 354,363 ----
  ;;; This parser is limited to the operators &&, ||, !, and "defined".
  ;;; Added ==, !=, +, and -.  Gary Oberbrunner, address@hidden, 8/9/94
  
+ (defsubst hif-nexttoken ()
+   "Pop the next token from token-list into the let variable \"hif-token\"."
+   (setq hif-token (pop hif-token-list)))
+ 
  (defun hif-parse-if-exp (hif-token-list)
    "Parse the TOKEN-LIST.  Return translated list in prefix form."
    (hif-nexttoken)
***************
*** 361,370 ****
        (hif-expr)
      (if hif-token ; is there still a token?
        (error "Error: unexpected token: %s" hif-token))))
- 
- (defsubst hif-nexttoken ()
-   "Pop the next token from token-list into the let variable \"hif-token\"."
-   (setq hif-token (pop hif-token-list)))
  
  (defun hif-expr ()
    "Parse an expression as found in #if.
--- 365,370 ----



reply via email to

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