Function: cperl-modify-syntax-type
cperl-modify-syntax-type is a byte-compiled function defined in
cperl-mode.el.gz.
Signature
(cperl-modify-syntax-type AT HOW)
Documentation
Modify the syntax-table text properties at AT as given by HOW.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/cperl-mode.el.gz
(defsubst cperl-modify-syntax-type (at how)
"Modify the syntax-table text properties at AT as given by HOW."
(if (< at (point-max))
(progn
(put-text-property at (1+ at) 'syntax-table how)
(put-text-property at (1+ at) 'rear-nonsticky '(syntax-table)))))