aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2010-11-09 23:59:00 -0800
committerGlenn Morris2010-11-09 23:59:00 -0800
commitc026460bc47f9c3be3fc27efb014c39d782a955e (patch)
tree1389388a445a254244d954f0cf7e432d2d23fa7b
parent3d49267055188e2f4bf052c4e1a376ec509d3304 (diff)
downloademacs-c026460bc47f9c3be3fc27efb014c39d782a955e.tar.gz
emacs-c026460bc47f9c3be3fc27efb014c39d782a955e.zip
* lisp/textmodes/texnfo-upd.el (texinfo-pointer-name): Fix typo.
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/textmodes/texnfo-upd.el3
2 files changed, 3 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 9189884892e..9187e1f451b 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -8,6 +8,8 @@
8 * emulation/tpu-extras.el (tpu-with-position): New macro. 8 * emulation/tpu-extras.el (tpu-with-position): New macro.
9 (tpu-paragraph, tpu-page, tpu-search-internal): Use it. 9 (tpu-paragraph, tpu-page, tpu-search-internal): Use it.
10 10
11 * textmodes/texnfo-upd.el (texinfo-pointer-name): Fix typo.
12
11 * textmodes/texnfo-upd.el (texinfo-all-menus-update) 13 * textmodes/texnfo-upd.el (texinfo-all-menus-update)
12 (texinfo-menu-copy-old-description, texinfo-start-menu-description) 14 (texinfo-menu-copy-old-description, texinfo-start-menu-description)
13 (texinfo-master-menu, texinfo-insert-node-lines) 15 (texinfo-master-menu, texinfo-insert-node-lines)
diff --git a/lisp/textmodes/texnfo-upd.el b/lisp/textmodes/texnfo-upd.el
index 4c3dbda80b0..ff021532c50 100644
--- a/lisp/textmodes/texnfo-upd.el
+++ b/lisp/textmodes/texnfo-upd.el
@@ -1439,8 +1439,7 @@ The argument is the kind of section, either `normal' or `no-pointer'."
1439 (end-of-line) ; this handles prev node top case 1439 (end-of-line) ; this handles prev node top case
1440 (re-search-backward ; when point is already 1440 (re-search-backward ; when point is already
1441 "^@node" ; at the beginning of @node line 1441 "^@node" ; at the beginning of @node line
1442 ;; FIXME this can't be right. Missing the point? 1442 (line-beginning-position -2)
1443 (save-excursion (forward-line -3))
1444 t) 1443 t)
1445 (setq name (texinfo-copy-node-name))) 1444 (setq name (texinfo-copy-node-name)))
1446 ((eq kind 'no-pointer) 1445 ((eq kind 'no-pointer)