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)
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/cperl-mode.el.gz
(defsubst cperl-modify-syntax-type (at 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)))))