2009-12-11 Glenn Morris <rgm@gnu.org>
+ * progmodes/cc-engine.el (safe-pos-list): Define for compiler.
+
* mail/emacsbug.el: No longer require sendmail.
Replace sendmail's `mail-text' by `rfc822-goto-eoh'. (Bug#5174)
(report-emacs-bug-orig-text): Doc fix.
(goto-char bound))
nil)))
+(defvar safe-pos-list) ; bound in c-syntactic-skip-backward
+
(defsubst c-ssb-lit-begin ()
;; Return the start of the literal point is in, or nil.
;; We read and write the variables `safe-pos', `safe-pos-list', `state'
;;
;; FIXME: Consult `syntax-ppss' here if our cache doesn't give a good
;; position.
-
+
(while (and safe-pos-list
(> (car safe-pos-list) (point)))
(setq safe-pos-list (cdr safe-pos-list)))