diff options
author | Richard M. Stallman <rms@gnu.org> | 1995-07-27 22:04:24 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1995-07-27 22:04:24 +0000 |
commit | 7007e1e37012654ef368a869166e23f773f8a26a (patch) | |
tree | ac799fde171e0c3e7bb7e45724c887d00e800e26 /lisp/textmodes/texnfo-upd.el | |
parent | e8185fa81639ea35e36786ae7e23ab5e8f97f8b5 (diff) | |
download | emacs-7007e1e37012654ef368a869166e23f773f8a26a.tar.gz emacs-7007e1e37012654ef368a869166e23f773f8a26a.tar.bz2 emacs-7007e1e37012654ef368a869166e23f773f8a26a.zip |
(texinfo-specific-section-type): Use buffer-substring-no-properties.
Diffstat (limited to 'lisp/textmodes/texnfo-upd.el')
-rw-r--r-- | lisp/textmodes/texnfo-upd.el | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lisp/textmodes/texnfo-upd.el b/lisp/textmodes/texnfo-upd.el index f84cdd51496..b46387dd11b 100644 --- a/lisp/textmodes/texnfo-upd.el +++ b/lisp/textmodes/texnfo-upd.el @@ -1001,10 +1001,11 @@ error if the node is not the top node and a section is not found." t) "top") ((re-search-forward texinfo-section-types-regexp nil t) - (buffer-substring (progn (beginning-of-line) ; copy its name - (1+ (point))) - (progn (forward-word 1) - (point)))) + (buffer-substring-no-properties + (progn (beginning-of-line) ; copy its name + (1+ (point))) + (progn (forward-word 1) + (point)))) (t (error "texinfo-specific-section-type: Chapter or section not found.")))))) |