Function: sh-mode-syntax-table
sh-mode-syntax-table is a byte-compiled function defined in
sh-script.el.gz.
Signature
(sh-mode-syntax-table TABLE &rest LIST)
Documentation
Copy TABLE and set syntax for successive CHARs according to strings S.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/sh-script.el.gz
(defun sh-mode-syntax-table (table &rest list)
"Copy TABLE and set syntax for successive CHARs according to strings S."
(setq table (copy-syntax-table table))
(while list
(modify-syntax-entry (pop list) (pop list) table))
table)