emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs/lisp isearch.el


From: Eli Zaretskii
Subject: [Emacs-diffs] emacs/lisp isearch.el
Date: Sat, 14 Feb 2009 09:04:46 +0000

CVSROOT:        /cvsroot/emacs
Module name:    emacs
Changes by:     Eli Zaretskii <eliz>    09/02/14 09:04:46

Modified files:
        lisp           : isearch.el 

Log message:
        (isearch-search-string): Use `with-no-warnings' around forms that refer
        to translation-table-for-input.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/isearch.el?cvsroot=emacs&r1=1.344&r2=1.345

Patches:
Index: isearch.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/isearch.el,v
retrieving revision 1.344
retrieving revision 1.345
diff -u -b -r1.344 -r1.345
--- isearch.el  12 Feb 2009 05:38:27 -0000      1.344
+++ isearch.el  14 Feb 2009 09:04:46 -0000      1.345
@@ -2214,14 +2214,22 @@
   (let* ((func (isearch-search-fun))
          (pos1 (save-excursion (funcall func string bound noerror)))
          pos2)
-    (when (and (char-table-p translation-table-for-input)
+    (when (and
+          ;; Avoid "obsolete" warnings for translation-table-for-input.
+          (with-no-warnings
+            (char-table-p translation-table-for-input))
                (multibyte-string-p string)
                ;; Minor optimization.
                (string-match-p "[^[:ascii:]]" string))
       (let ((translated
              (apply 'string
                     (mapcar (lambda (c)
-                              (or (aref translation-table-for-input c) c))
+                              (or
+                              ;; Avoid "obsolete" warnings for
+                              ;; translation-table-for-input.
+                              (with-no-warnings
+                                (aref translation-table-for-input c))
+                              c))
                             string)))
             match-data)
         (when translated




reply via email to

[Prev in Thread] Current Thread [Next in Thread]