]> git.eshelyaron.com Git - emacs.git/commitdiff
(set-case-syntax-charset, set-case-syntax-1)
authorDave Love <fx@gnu.org>
Sat, 5 Oct 2002 18:59:25 +0000 (18:59 +0000)
committerDave Love <fx@gnu.org>
Sat, 5 Oct 2002 18:59:25 +0000 (18:59 +0000)
(set-case-syntax-delims, set-case-syntax-pair, set-case-syntax):
Undo last changes.

lisp/case-table.el

index 0c411dab7a57d167f2c0308679b7695e3d3d53dd..1897ef0aec10bcb0d4032de66e79f38e9db7aedb 100644 (file)
 
 ;;; Code:
 
-;; Temporary workaround for loading latin-X.el.  They must bind this
-;; variable to a charset to convert code points to characters.
-(defvar set-case-syntax-charset nil)
-
 (defun describe-buffer-case-table ()
   "Describe the case table of the current buffer."
   (interactive)
     (set-char-table-extra-slot copy 2 nil)
     copy))
 
-(defun set-case-syntax-1 (code)
-  (if (and (charsetp set-case-syntax-charset)
-          (< code 256))
-      (decode-char set-case-syntax-charset code)
-    code))
-
 (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
 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-1 l))
-  (setq r (set-case-syntax-1 r))
   (aset table l l)
   (aset table r r)
   ;; Clear out the extra slots so that they will be
@@ -98,8 +86,6 @@ This sets the entries for characters UC and LC in TABLE, which is a string
 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-1 uc))
-  (setq lc (set-case-syntax-1 lc))
   (aset table uc lc)
   (aset table lc lc)
   (set-char-table-extra-slot table 0 nil)
@@ -114,7 +100,6 @@ This sets the entry for character C in TABLE, which is a string
 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-1 c))
   (aset table c c)
   (set-char-table-extra-slot table 0 nil)
   (set-char-table-extra-slot table 1 nil)