(defun cperl-putback-char (c) ; Emacs 19
(push c unread-command-events)) ; Avoid undefined warning
-(defvar cperl-do-not-fontify
- ;; FIXME: This is not doing what it claims!
- (if (string< emacs-version "19.30")
- 'fontified
- 'lazy-lock)
- "Text property which inhibits refontification.")
-
(defsubst cperl-put-do-not-fontify (from to &optional post)
;; If POST, do not do it with postponed fontification
(if (and post cperl-syntaxify-by-font-lock)
nil
(put-text-property (max (point-min) (1- from))
- to cperl-do-not-fontify t)))
+ to 'fontified t)))
(defcustom cperl-mode-hook nil
"Hook run by CPerl mode."
(substring v (match-beginning 1) (match-end 1)))
"Version of IZ-supported CPerl package this file is based on.")
+(defvar cperl-do-not-fontify 'fontified
+ "Text property which inhibits refontification.")
+(make-obsolete-variable 'cperl-do-not-fontify nil "28.1")
+
(provide 'cperl-mode)
;;; cperl-mode.el ends here