aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuri Linkov2007-10-18 00:17:38 +0000
committerJuri Linkov2007-10-18 00:17:38 +0000
commit8dd4830b2a894e90c06921033d8cd8bd05469fe6 (patch)
treef8cbe3dba67547eb8fd764092bc88cbccf98f960
parentecde850af07c3ed64a638fe843da967214b4d3f3 (diff)
downloademacs-8dd4830b2a894e90c06921033d8cd8bd05469fe6.tar.gz
emacs-8dd4830b2a894e90c06921033d8cd8bd05469fe6.zip
(auto-mode-alist): Add \\. before PDF/PS/DVI extensions. Regroup.
-rw-r--r--lisp/ChangeLog24
-rw-r--r--lisp/files.el2
2 files changed, 25 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index d6132f665aa..8e0853ea612 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,27 @@
12007-10-17 Juri Linkov <juri@jurta.org>
2
3 * textmodes/fill.el (fill-paragraph-or-region): Remove function
4 at the request of RMS.
5 (fill-paragraph): Change `arg' to optional `justify'. Add interactive
6 arg `region'. Fix docstring. At the first `or' branch add call to
7 `fill-region' if it the region is active in transient-mark-mode.
8
9 * bindings.el (esc-map): Bind M-q to fill-paragraph
10 instead of fill-paragraph-or-region.
11
12 * tutorial.el (tutorial--default-keys): Replace fill-paragraph-or-region
13 with fill-paragraph.
14
15 * textmodes/ispell.el (ispell-word): Add interactive arg `region'.
16 Fix docstring.
17
18 * indent.el (indent-for-tab-command): Change interactive spec from
19 "P" to "p". Add check for interactive arg before indenting the
20 active region.
21
22 * files.el (auto-mode-alist): Add \\. before PDF/PS/DVI extensions.
23 Regroup.
24
12007-10-17 Juanma Barranquero <lekktu@gmail.com> 252007-10-17 Juanma Barranquero <lekktu@gmail.com>
2 26
3 * emacs-lisp/find-func.el: Don't require loadhist. 27 * emacs-lisp/find-func.el: Don't require loadhist.
diff --git a/lisp/files.el b/lisp/files.el
index 3b0b670e21f..d856d7f34a7 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -2059,7 +2059,7 @@ ARC\\|ZIP\\|LZH\\|LHA\\|ZOO\\|[JEW]AR\\|XPI\\|RAR\\)\\'" . archive-mode)
2059 ("\\.\\(as\\|mi\\|sm\\)2\\'" . snmpv2-mode) 2059 ("\\.\\(as\\|mi\\|sm\\)2\\'" . snmpv2-mode)
2060 ("\\.\\(diffs?\\|patch\\|rej\\)\\'" . diff-mode) 2060 ("\\.\\(diffs?\\|patch\\|rej\\)\\'" . diff-mode)
2061 ("\\.\\(dif\\|pat\\)\\'" . diff-mode) ; for MSDOG 2061 ("\\.\\(dif\\|pat\\)\\'" . diff-mode) ; for MSDOG
2062 ("\\(?:DVI\\|EPS\\|P\\(?:DF\\|S\\)\\|dvi\\|eps\\|p\\(?:df\\|s\\)\\)" . doc-view-mode) 2062 ("\\.\\(?:PDF\\|E?PS\\|DVI\\|pdf\\|e?ps\\|dvi\\)" . doc-view-mode)
2063 ("configure\\.\\(ac\\|in\\)\\'" . autoconf-mode) 2063 ("configure\\.\\(ac\\|in\\)\\'" . autoconf-mode)
2064 ("BROWSE\\'" . ebrowse-tree-mode) 2064 ("BROWSE\\'" . ebrowse-tree-mode)
2065 ("\\.ebrowse\\'" . ebrowse-tree-mode) 2065 ("\\.ebrowse\\'" . ebrowse-tree-mode)