summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2007-04-29 14:43:28 +0000
committerRichard M. Stallman <rms@gnu.org>2007-04-29 14:43:28 +0000
commit6f37a5760b6efac0b70b3a89ee4014938c493f15 (patch)
treeab0e7b08e5f901e7091f438da8c8f36f3bb69390 /lisp
parent207f10c66bb9a15d936c94f3c26546b1d8b53eb1 (diff)
downloademacs-6f37a5760b6efac0b70b3a89ee4014938c493f15.tar.gz
emacs-6f37a5760b6efac0b70b3a89ee4014938c493f15.tar.bz2
emacs-6f37a5760b6efac0b70b3a89ee4014938c493f15.zip
(auto-coding-alist): Add pdf => no-conversion.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/international/mule.el1
2 files changed, 5 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 1e3ecfaa838..c01bc918529 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
+2007-04-29 Richard Stallman <rms@gnu.org>
+
+ * international/mule.el (auto-coding-alist): Add pdf => no-conversion.
+
2007-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
* progmodes/cc-mode.el (c-before-change): Use point-min rather
diff --git a/lisp/international/mule.el b/lisp/international/mule.el
index 1de9b40105c..bee0bdcbca3 100644
--- a/lisp/international/mule.el
+++ b/lisp/international/mule.el
@@ -1586,6 +1586,7 @@ text, and convert it in the temporary buffer. Otherwise, convert in-place."
("\\.\\(sx[dmicw]\\|odt\\|tar\\|tgz\\)\\'" . no-conversion)
("\\.\\(gz\\|Z\\|bz\\|bz2\\|gpg\\)\\'" . no-conversion)
("\\.\\(jpe?g\\|png\\|gif\\|tiff?\\|p[bpgn]m\\)\\'" . no-conversion)
+ ("\\.pdf\\'" . no-conversion)
("/#[^/]+#\\'" . emacs-mule))
"Alist of filename patterns vs corresponding coding systems.
Each element looks like (REGEXP . CODING-SYSTEM).