GNU bug report logs -
#14714
24.3.50; `isearch-filter-predicate(s)'
Previous Next
Reported by: Drew Adams <drew.adams <at> oracle.com>
Date: Tue, 25 Jun 2013 17:27:02 UTC
Severity: normal
Found in version 24.3.50
Done: Stefan Monnier <monnier <at> iro.umontreal.ca>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your message dated Mon, 05 Aug 2013 14:07:33 -0400
with message-id <jwvwqo0xbau.fsf-monnier+emacs <at> gnu.org>
and subject line Re: bug#14714: 24.3.50; `isearch-filter-predicate(s)'
has caused the debbugs.gnu.org bug report #14714,
regarding 24.3.50; `isearch-filter-predicate(s)'
to be marked as done.
(If you believe you have received this mail in error, please contact
help-debbugs <at> gnu.org.)
--
14714: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=14714
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
Problem similar to that of bug #14712, regarding obsolescence, but I
think there is a code problem also.
1. `isearch-filter-predicates' should not be an _alias_ for
`isearch-filter-predicate'. The former cannot just replace the latter.
2. I think one cannot currently use a single predicate as the value of
`isearch-filter-predicates'. There is one place in the code where that
might work, because of this:
(if (consp isearch-filter-predicates)
isearch-filter-predicates
(list isearch-filter-predicates))
(But what if isearch-filter-predicates is nil? You get `(nil)', which I
think is wrong.)
And in other places it should not work at all. E.g.:
(run-hook-with-args-until-failure
'isearch-filter-predicates
(match-beginning 0) (match-end 0))
To make it work throughout, I think you would need to do something like this:
(when (and isearch-filter-predicates
(atom isearch-filter-predicates))
(setq isearch-filter-predicates (list isearch-filter-predicates)))
IOW, at the outset, convert an atomic (and non-nil) value to a cons.
In GNU Emacs 24.3.50.1 (i686-pc-mingw32)
of 2013-06-20 on ODIEONE
Bzr revision: 113100 eliz <at> gnu.org-20130620173624-w9v620tog4yacftk
Windowing system distributor `Microsoft Corp.', version 6.1.7601
Configured using:
`configure --prefix=/c/Devel/emacs/binary --enable-checking=yes,glyphs
CFLAGS=-O0 -g3 LDFLAGS=-Lc:/Devel/emacs/lib
CPPFLAGS=-Ic:/Devel/emacs/include'
[Message part 3 (message/rfc822, inline)]
I have now reverted to isearch-filter-predicate.
>> works fine, but
>> (advice-member-p #'test-a 'isearch-filter-predicate)
>> returns nil.
Actually, I changed the code in a way that doesn't require
advice-(function-)member-p.
Stefan
This bug report was last modified 11 years and 290 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.