aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorJuanma Barranquero2005-06-29 13:58:00 +0000
committerJuanma Barranquero2005-06-29 13:58:00 +0000
commit16f4391084f94976fbccd6c755660960da78bad6 (patch)
tree91377bb2f850ded420b049578fd6948b3062f584 /lisp
parente0b3c2b98d7ac5b6f1df481d52a085b16e5b81cb (diff)
downloademacs-16f4391084f94976fbccd6c755660960da78bad6.tar.gz
emacs-16f4391084f94976fbccd6c755660960da78bad6.zip
(texinfo-insert-@item): Change space constants "protected" from end of line by a
comment to "?\s".
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog17
-rw-r--r--lisp/textmodes/texinfo.el2
2 files changed, 17 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index e89509d23c8..27663abdaf8 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,18 @@
12005-06-29 Juanma Barranquero <lekktu@gmail.com>
2
3 * imenu.el (imenu--completion-buffer):
4 * mouse.el (mouse-buffer-menu-alist):
5 * msb.el (msb-invisible-buffer-p):
6 * calendar/diary-lib.el (diary-header-line-format):
7 * emacs-lisp/pp.el (pp-buffer):
8 * progmodes/cperl-mode.el (cperl-do-auto-fill):
9 * textmodes/picture.el (picture-replace-match):
10 Change space constants followed by a sexp to "?\s ".
11
12 * play/decipher.el (decipher-loop-with-breaks):
13 * textmodes/texinfo.el (texinfo-insert-@item): Change space
14 constants "protected" from end of line by a comment to "?\s".
15
12005-06-29 Stefan Monnier <monnier@iro.umontreal.ca> 162005-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
2 17
3 * font-lock.el (save-buffer-state): Use `declare'. 18 * font-lock.el (save-buffer-state): Use `declare'.
@@ -9,7 +24,7 @@
9 24
102005-06-29 Carsten Dominik <dominik@science.uva.nl> 252005-06-29 Carsten Dominik <dominik@science.uva.nl>
11 26
12 * textmodes/org.el: (orgtbl-setup): New function, for delayed 27 * textmodes/org.el (orgtbl-setup): New function, for delayed
13 setup for the orgtbl commands. 28 setup for the orgtbl commands.
14 (org-calc-default-modes): New option. 29 (org-calc-default-modes): New option.
15 (orgtbl-make-binding): Use `defun' to get better help display. 30 (orgtbl-make-binding): Use `defun' to get better help display.
diff --git a/lisp/textmodes/texinfo.el b/lisp/textmodes/texinfo.el
index 2be01d630f9..aac70dd1e23 100644
--- a/lisp/textmodes/texinfo.el
+++ b/lisp/textmodes/texinfo.el
@@ -816,7 +816,7 @@ Otherwise, follow with a newline."
816 (texinfo-last-unended-begin) 816 (texinfo-last-unended-begin)
817 (match-string 1))) 817 (match-string 1)))
818 "table") 818 "table")
819 ? ;space 819 ?\s
820 ?\n))) 820 ?\n)))
821 821
822(defun texinfo-insert-@kbd (&optional arg) 822(defun texinfo-insert-@kbd (&optional arg)