diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-08-09 08:10:48 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-08-09 08:10:48 +0000 |
commit | a87ed2740a0f2551bc6018c9d047db67c0412ab8 (patch) | |
tree | 2df6b12198b6feb317cde53bc51ffad9bf1bd23b /lisp/case-table.el | |
parent | d23ad362d6b5162204b033478d9c2b51b60ab1b9 (diff) | |
download | emacs-a87ed2740a0f2551bc6018c9d047db67c0412ab8.tar.gz |
Delete autoload cookies (file is preloaded).
Diffstat (limited to 'lisp/case-table.el')
-rw-r--r-- | lisp/case-table.el | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lisp/case-table.el b/lisp/case-table.el index c66f76919ae..79cc96b5b31 100644 --- a/lisp/case-table.el +++ b/lisp/case-table.el @@ -38,7 +38,6 @@ (defvar set-case-syntax-set-multibyte nil) -;;;###autoload (defun describe-buffer-case-table () "Describe the case table of the current buffer." (interactive) @@ -63,7 +62,6 @@ (describe-vector description) (help-mode))))) -;;;###autoload (defun copy-case-table (case-table) (let ((copy (copy-sequence case-table))) ;; Clear out the extra slots so that they will be @@ -79,7 +77,6 @@ (+ char set-case-syntax-offset) char)) -;;;###autoload (defun set-case-syntax-delims (l r table) "Make characters L and R a matching pair of non-case-converting delimiters. This sets the entries for L and R in TABLE, which is a string @@ -100,7 +97,6 @@ indicate left and right delimiters." (modify-syntax-entry r (concat ")" (char-to-string l) " ") (standard-syntax-table))) -;;;###autoload (defun set-case-syntax-pair (uc lc table) "Make characters UC and LC a pair of inter-case-converting letters. This sets the entries for characters UC and LC in TABLE, which is a string @@ -117,7 +113,6 @@ word constituents." (modify-syntax-entry lc "w " (standard-syntax-table)) (modify-syntax-entry uc "w " (standard-syntax-table))) -;;;###autoload (defun set-case-syntax (c syntax table) "Make character C case-invariant with syntax SYNTAX. This sets the entry for character C in TABLE, which is a string |