+2002-04-16 Mike Williams <mdub@bigfoot.com>
+
+ * textmodes/sgml-mode.el (sgml-at-indentation-p): Move to fix
+ compilation error.
+
2002-04-16 Michael Kifer <kifer@cs.stonybrook.edu>
* viper-ex.el: Patch by Samuel Padgett. Copyright papers received.
(save-some-buffers (not compilation-ask-about-save) nil)
(compile-internal command "No more errors"))
+(defsubst sgml-at-indentation-p ()
+ "Return true if point is at the first non-whitespace character on the line."
+ (save-excursion
+ (skip-chars-backward " \t")
+ (bolp)))
+
(defun sgml-lexical-context (&optional limit)
"Return the lexical context at point as (TYPE . START).
START is the location of the start of the lexical element.
(?< . "<")
(?> . ">"))))))))
-(defsubst sgml-at-indentation-p ()
- "Return true if point is at the first non-whitespace character on the line."
- (save-excursion
- (skip-chars-backward " \t")
- (bolp)))
-
\f
;; Parsing