aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier <[email protected]>2001-12-01 18:20:52 +0000
committerStefan Monnier <[email protected]>2001-12-01 18:20:52 +0000
commitf1259a53b014c4b72c6fac5a166aac8e23f48a38 (patch)
tree7d02671df5430ea2c1b4087d3d732d1788064998
parent14e76ac97c890e51353046854a93b72053c0b926 (diff)
(hif-nexttoken): Move to before first def.
-rw-r--r--lisp/progmodes/hideif.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/progmodes/hideif.el b/lisp/progmodes/hideif.el
index ba12b7cbff..e814f296f0 100644
--- a/lisp/progmodes/hideif.el
+++ b/lisp/progmodes/hideif.el
@@ -354,6 +354,10 @@ that form should be displayed.")
;;; This parser is limited to the operators &&, ||, !, and "defined".
;;; Added ==, !=, +, and -. Gary Oberbrunner, [email protected], 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)
@@ -362,10 +366,6 @@ that form should be displayed.")
(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.
expr : term | expr '||' term."