]> git.eshelyaron.com Git - emacs.git/commitdiff
(register-char-codings): Make alias for `ignore'. Move docstring to
authorJuanma Barranquero <lekktu@gmail.com>
Wed, 2 Jun 2004 00:43:56 +0000 (00:43 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Wed, 2 Jun 2004 00:43:56 +0000 (00:43 +0000)
obsolescence info and remove redundancy.

lisp/international/mule.el

index de9d3ef8e2c18942f9930a44d66307f8c79e58da..c4c7be3a2255be7f43f2c8b0cf05dab78eff5b52 100644 (file)
@@ -592,11 +592,9 @@ character code range.  Thus FUNC should iterate over [START, END]."
                 (make-char charset (+ i start) start)
                 (make-char charset (+ i start) (+ start chars -1)))))))
 
-(defun register-char-codings (coding-system safe-chars)
-  "This is an obsolete function.
-It exists just for backward compatibility, and it does nothing.")
+(defalias 'register-char-codings 'ignore "")
 (make-obsolete 'register-char-codings
-              "Unnecessary function.  Calling it has no effect."
+               "it exists just for backward compatibility, and does nothing."
               "21.3")
 
 (defconst char-coding-system-table nil
@@ -1401,7 +1399,7 @@ 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-string 
+                    (encoding-info (assoc-string
                                     encoding
                                     ctext-non-standard-encodings-alist t))
                     (coding (if encoding-info
@@ -1445,7 +1443,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))
@@ -1501,7 +1499,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\ 2"
                                          noctets
                                          (+ (/ len 128) 128)
@@ -1668,7 +1666,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:"
@@ -1688,7 +1686,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.