summaryrefslogtreecommitdiff
path: root/lisp/international/mule.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/international/mule.el')
-rw-r--r--lisp/international/mule.el12
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/international/mule.el b/lisp/international/mule.el
index 8b2702bc30a..32f6a199268 100644
--- a/lisp/international/mule.el
+++ b/lisp/international/mule.el
@@ -1374,9 +1374,9 @@ Each element must be one of the names listed in the variable
(let* ((M (char-after (+ pos 4)))
(L (char-after (+ pos 5)))
(encoding (match-string 2))
- (encoding-info (assoc-ignore-case
+ (encoding-info (assoc-string
encoding
- ctext-non-standard-encodings-alist))
+ ctext-non-standard-encodings-alist t))
(coding (if encoding-info
(nth 1 encoding-info)
(setq encoding (intern (downcase encoding)))
@@ -1418,7 +1418,7 @@ Each element must be one of the names listed in the variable
(dolist (elt charset)
(aset table (make-char elt) slot)))
((char-table-p charset)
- (map-char-table #'(lambda (k v)
+ (map-char-table #'(lambda (k v)
(if (and v (> k 128)) (aset table k slot)))
charset))))))
table))
@@ -1467,7 +1467,7 @@ text, and convert it in the temporary buffer. Otherwise, convert in-place."
(- (point) last-pos)))
(save-excursion
(goto-char last-pos)
- (insert (string-to-multibyte
+ (insert (string-to-multibyte
(format "\e%%/%d%c%c%s"
noctets
(+ (/ len 128) 128)
@@ -1636,7 +1636,7 @@ function by default."
(goto-char tail-start)
(re-search-forward "[\r\n]\^L" nil t)
(if (re-search-forward
- "[\r\n]\\([^[\r\n]*\\)[ \t]*Local Variables:[ \t]*\\([^\r\n]*\\)[\r\n]"
+ "[\r\n]\\([^[\r\n]*\\)[ \t]*Local Variables:[ \t]*\\([^\r\n]*\\)[\r\n]"
tail-end t)
;; The prefix is what comes before "local variables:" in its
;; line. The suffix is what comes after "local variables:"
@@ -1656,7 +1656,7 @@ function by default."
"[ \t]*unibyte[ \t]*:[ \t]*\\([^ \t\r\n]+\\)[ \t]*"
suffix "[\r\n]"))
(re-end
- (concat "[\r\n]" prefix "[ \t]*End *:[ \t]*" suffix
+ (concat "[\r\n]" prefix "[ \t]*End *:[ \t]*" suffix
"[\r\n]?"))
(pos (1- (point))))
(forward-char -1) ; skip back \r or \n.