aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2005-10-25 04:58:35 +0000
committerStefan Monnier2005-10-25 04:58:35 +0000
commitbc6785f3f2f47b53db143c2fa2b604d4d288d3fe (patch)
tree4d78c6ce739225383ce92976b8d3434c1d3eac1f
parent75538b71d28c97b88b0f08de95bdf6a6daefa72d (diff)
downloademacs-bc6785f3f2f47b53db143c2fa2b604d4d288d3fe.tar.gz
emacs-bc6785f3f2f47b53db143c2fa2b604d4d288d3fe.zip
(texinfo-mode): Use real chars, so as not to unnecessarily expose
emacs-mule's internal char codes.
-rw-r--r--lisp/ChangeLog8
-rw-r--r--lisp/textmodes/texinfo.el6
2 files changed, 10 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 4b203e4c81b..3f1994508c0 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
12005-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * textmodes/texinfo.el (texinfo-mode):
4 * textmodes/paragraphs.el (sentence-end-base): Use real chars, so as
5 not to unnecessarily expose emacs-mule's internal char codes.
6
12005-10-25 Nick Roberts <nickrob@snap.net.nz> 72005-10-25 Nick Roberts <nickrob@snap.net.nz>
2 8
3 * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Correct help-echo. 9 * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Correct help-echo.
@@ -25,7 +31,7 @@
25 31
262005-10-24 Carsten Dominik <dominik@science.uva.nl> 322005-10-24 Carsten Dominik <dominik@science.uva.nl>
27 33
28 * textmodes/org.el (org-start-icalendar-file): Fixed format form. 34 * textmodes/org.el (org-start-icalendar-file): Fix format form.
29 35
302005-10-25 Masatake YAMATO <jet@gyve.org> 362005-10-25 Masatake YAMATO <jet@gyve.org>
31 37
diff --git a/lisp/textmodes/texinfo.el b/lisp/textmodes/texinfo.el
index 3507f6e57cf..ccc117b8b0b 100644
--- a/lisp/textmodes/texinfo.el
+++ b/lisp/textmodes/texinfo.el
@@ -1,4 +1,4 @@
1;;; texinfo.el --- major mode for editing Texinfo files 1;;; texinfo.el --- major mode for editing Texinfo files -*- coding: iso-2022-7bit -*-
2 2
3;; Copyright (C) 1985, 1988, 1989, 1990, 1991, 1992, 1993, 1996, 1997, 3;; Copyright (C) 1985, 1988, 1989, 1990, 1991, 1992, 1993, 1996, 1997,
4;; 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. 4;; 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
@@ -595,7 +595,7 @@ value of `texinfo-mode-hook'."
595 (setq paragraph-start (concat "\b\\|@[a-zA-Z]*[ \n]\\|" paragraph-start)) 595 (setq paragraph-start (concat "\b\\|@[a-zA-Z]*[ \n]\\|" paragraph-start))
596 (make-local-variable 'sentence-end-base) 596 (make-local-variable 'sentence-end-base)
597 (setq sentence-end-base 597 (setq sentence-end-base
598 "\\(@\\(end\\)?dots{}\\|[.?!]\\)[]\"'\xd0c9\x5397d)}]*") 598 "\\(@\\(end\\)?dots{}\\|[.?!]\\)[]\"'$,1r}r}(B)}]*")
599 (make-local-variable 'adaptive-fill-mode) 599 (make-local-variable 'adaptive-fill-mode)
600 (setq adaptive-fill-mode nil) 600 (setq adaptive-fill-mode nil)
601 (make-local-variable 'fill-column) 601 (make-local-variable 'fill-column)
@@ -1059,5 +1059,5 @@ You are prompted for the job number (use a number shown by a previous
1059 1059
1060(provide 'texinfo) 1060(provide 'texinfo)
1061 1061
1062;;; arch-tag: 005d7c38-43b9-4b7d-aa1d-aea69bae73e1 1062;; arch-tag: 005d7c38-43b9-4b7d-aa1d-aea69bae73e1
1063;;; texinfo.el ends here 1063;;; texinfo.el ends here