2010-11-01 Glenn Morris <rgm@gnu.org>
+ * progmodes/ruby-mode.el (ruby-syntax-propertize-heredoc): Declare.
+
* textmodes/ispell.el (comment-add): Declare.
* net/gnutls.el (gnutls-boot, gnutls-errorp, gnutls-error-string):
;;; ruby-mode.el --- Major mode for editing Ruby files
-;; Copyright (C) 1994, 1995, 1996 1997, 1998, 1999, 2000, 2001,
-;; 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
+;; Copyright (C) 1994, 1995, 1996 1997, 1998, 1999, 2000, 2001, 2002,
+;; 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
;; Free Software Foundation, Inc.
;; Authors: Yukihiro Matsumoto
(if mlist (concat mlist mname) mname)
mlist)))))
+(declare-function ruby-syntax-propertize-heredoc "ruby-mode" (limit))
+
(if (eval-when-compile (fboundp #'syntax-propertize-rules))
;; New code that works independently from font-lock.
(progn
;; inf-loop.
(if (< (point) start) (goto-char start))))))
)
-
+
;; For Emacsen where syntax-propertize-rules is not (yet) available,
;; fallback on the old font-lock-syntactic-keywords stuff.
(provide 'ruby-mode)
-;; arch-tag: e6ecc893-8005-420c-b7f9-34ab99a1fff9
;;; ruby-mode.el ends here