emacs-pretest-bug
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Info-validate bug.


From: Juri Linkov
Subject: Re: Info-validate bug.
Date: 02 Oct 2003 23:57:28 +0300
User-agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3.50

Stefan Monnier <address@hidden> writes:
> > When I do M-x Info-validate in an info buffer, I get:
> >   Info-validate: Symbol's function definition is void: 
> > Info-following-node-name
> 
> > Can somebody confirm that this is the right fix?
> 
> No, it's not :-(
> Can you try the fix below instead ?
> The problem was introduced by the following change:
> 
> 2003-07-04  Stefan Monnier  <address@hidden>
> 
>       * info.el (Info-following-node-name-re): New fun.
>       (Info-following-node-name): Remove.

I had exactly the same problem when I used ee-info
(http://www.jurta.org/emacs/ee/info.en.html) in the latest Emacs CVS branch.
Your change broke the compatibility with older Emacs versions
that provided the `Info-following-node-name'.

To retain compatibility with all Emacs packages that you may be unaware of,
and that use the function `Info-following-node-name', you can restore this
function in the info.el with a new implementation:

(defun Info-following-node-name ()
  (and (looking-at (Info-following-node-name-re))
       (match-string 1)))

-- 
http://www.jurta.org/emacs/





reply via email to

[Prev in Thread] Current Thread [Next in Thread]