]> git.eshelyaron.com Git - emacs.git/commitdiff
(po-find-file-coding-system-guts): Use
authorEli Zaretskii <eliz@gnu.org>
Fri, 15 Mar 2002 19:30:36 +0000 (19:30 +0000)
committerEli Zaretskii <eliz@gnu.org>
Fri, 15 Mar 2002 19:30:36 +0000 (19:30 +0000)
with-temp-buffer instead of po-with-temp-buffer.

lisp/ChangeLog
lisp/textmodes/po.el

index eb7ad60d3ceb218cb4b0e8277f447248eb239d89..dcdb805651f2f4749e72a394d083088dc9b3e549 100644 (file)
@@ -1,5 +1,8 @@
 2002-03-15  Eli Zaretskii  <eliz@is.elta.co.il>
 
+       * textmodes/po.el (po-find-file-coding-system-guts): Use
+       with-temp-buffer instead of po-with-temp-buffer.
+
        * international/mule-conf.el (file-coding-system-alist): Add an
        association for PO files.
 
index d65eb3b6bc9b5d6b8218336248e58f92973c6726..30a188cf688e337be09ce943e7e872f19cb6dae4 100644 (file)
@@ -149,7 +149,7 @@ Return a Mule (DECODING . ENCODING) pair, according to PO file charset.
 Called through file-coding-system-alist, before the file is visited for real."
   (and (eq operation 'insert-file-contents)
        (file-exists-p filename)
-       (po-with-temp-buffer
+       (with-temp-buffer
         (let* ((coding-system-for-read 'no-conversion)
                 (charset (or (po-find-charset filename) "ascii"))
                 (charset-upper (intern (upcase charset)))