;;; Code:
+(defvar set-case-syntax-offset 0)
+
;;;###autoload
(defun describe-buffer-case-table ()
"Describe the case table of the current buffer."
that will be used as the downcase part of a case table.
It also modifies `standard-syntax-table' to
indicate left and right delimiters."
+ (setq l (+ set-case-syntax-offset l))
+ (setq r (+ set-case-syntax-offset r))
(aset table l l)
(aset table r r)
;; Clear out the extra slots so that they will be
that will be used as the downcase part of a case table.
It also modifies `standard-syntax-table' to give them the syntax of
word constituents."
+ (setq uc (+ set-case-syntax-offset uc))
+ (setq lc (+ set-case-syntax-offset lc))
(aset table uc lc)
(aset table lc lc)
(set-char-table-extra-slot table 0 nil)
that will be used as the downcase part of a case table.
It also modifies `standard-syntax-table'.
SYNTAX should be \" \", \"w\", \".\" or \"_\"."
+ (setq c (+ set-case-syntax-offset c))
(aset table c c)
(set-char-table-extra-slot table 0 nil)
(set-char-table-extra-slot table 1 nil)