all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#23536: 25.1.50; viper-mode "/" search includes "(default ...) " prefix
@ 2016-05-14  5:31 Jim Meyering
  2016-05-14  8:50 ` Eli Zaretskii
  0 siblings, 1 reply; 4+ messages in thread
From: Jim Meyering @ 2016-05-14  5:31 UTC (permalink / raw
  To: 23536

This is using emacs commit (latest master)
c8109d9c4057d8cac79e2c139758cadd410e7446.
How to repro?
Invoke this: emacs -nw -Q -f viper-mode
Then answer "n" to the viperize prompt.
Type "/foo" and hit ENTER.
You'll notice that the minibuffer now contains this:

  ‘(default ) foo’: Pattern not found

implying that you've searched for a string significantly different than "foo".
If you try again, you'll see that the search string grows even longer:

  ‘(default (default ) foo) foo’: Pattern not found

It looks like this problem was introduced via commit
088acab3831b45e0e0749705226b8680076df4b6, since
if I revert that and rebuild, the problem goes away.





^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#23536: 25.1.50; viper-mode "/" search includes "(default ...) " prefix
  2016-05-14  5:31 bug#23536: 25.1.50; viper-mode "/" search includes "(default ...) " prefix Jim Meyering
@ 2016-05-14  8:50 ` Eli Zaretskii
  2016-05-14 15:51   ` Jim Meyering
  0 siblings, 1 reply; 4+ messages in thread
From: Eli Zaretskii @ 2016-05-14  8:50 UTC (permalink / raw
  To: Jim Meyering; +Cc: 23536

> From: Jim Meyering <jim@meyering.net>
> Date: Fri, 13 May 2016 22:31:38 -0700
> 
> This is using emacs commit (latest master)
> c8109d9c4057d8cac79e2c139758cadd410e7446.
> How to repro?
> Invoke this: emacs -nw -Q -f viper-mode
> Then answer "n" to the viperize prompt.
> Type "/foo" and hit ENTER.
> You'll notice that the minibuffer now contains this:
> 
>   ‘(default ) foo’: Pattern not found
> 
> implying that you've searched for a string significantly different than "foo".
> If you try again, you'll see that the search string grows even longer:
> 
>   ‘(default (default ) foo) foo’: Pattern not found
> 
> It looks like this problem was introduced via commit
> 088acab3831b45e0e0749705226b8680076df4b6, since
> if I revert that and rebuild, the problem goes away.

Please see if the patch below fixes the problem, and doesn't bring new
ones.  (I don't use viper-mode, and we don't have a test suite for it,
so I couldn't easily test the result beyond your simple recipe.)

Thanks.

diff --git a/lisp/emulation/viper-cmd.el b/lisp/emulation/viper-cmd.el
index da72b97..6951dbb 100644
--- a/lisp/emulation/viper-cmd.el
+++ b/lisp/emulation/viper-cmd.el
@@ -2127,6 +2127,7 @@ viper-read-string-with-history
 
     (setq keymap (or keymap minibuffer-local-map)
 	  initial (or initial "")
+	  viper-initial initial
 	  temp-msg (if default
 		       (format "(default %s) " default)
 		     ""))





^ permalink raw reply related	[flat|nested] 4+ messages in thread

* bug#23536: 25.1.50; viper-mode "/" search includes "(default ...) " prefix
  2016-05-14  8:50 ` Eli Zaretskii
@ 2016-05-14 15:51   ` Jim Meyering
  2016-05-14 17:41     ` Eli Zaretskii
  0 siblings, 1 reply; 4+ messages in thread
From: Jim Meyering @ 2016-05-14 15:51 UTC (permalink / raw
  To: Eli Zaretskii; +Cc: 23536-done

On Sat, May 14, 2016 at 1:50 AM, Eli Zaretskii <eliz@gnu.org> wrote:
>> From: Jim Meyering <jim@meyering.net>
>> Date: Fri, 13 May 2016 22:31:38 -0700
>>
>> This is using emacs commit (latest master)
>> c8109d9c4057d8cac79e2c139758cadd410e7446.
>> How to repro?
>> Invoke this: emacs -nw -Q -f viper-mode
>> Then answer "n" to the viperize prompt.
>> Type "/foo" and hit ENTER.
>> You'll notice that the minibuffer now contains this:
>>
>>   ‘(default ) foo’: Pattern not found
>>
>> implying that you've searched for a string significantly different than "foo".
>> If you try again, you'll see that the search string grows even longer:
>>
>>   ‘(default (default ) foo) foo’: Pattern not found
>>
>> It looks like this problem was introduced via commit
>> 088acab3831b45e0e0749705226b8680076df4b6, since
>> if I revert that and rebuild, the problem goes away.
>
> Please see if the patch below fixes the problem, and doesn't bring new
> ones.  (I don't use viper-mode, and we don't have a test suite for it,
> so I couldn't easily test the result beyond your simple recipe.)
>
> Thanks.
>
> diff --git a/lisp/emulation/viper-cmd.el b/lisp/emulation/viper-cmd.el
> index da72b97..6951dbb 100644
> --- a/lisp/emulation/viper-cmd.el
> +++ b/lisp/emulation/viper-cmd.el
> @@ -2127,6 +2127,7 @@ viper-read-string-with-history
>
>      (setq keymap (or keymap minibuffer-local-map)
>           initial (or initial "")
> +         viper-initial initial

Thank you. That does indeed solve the problem.
I'm closing this for now and will reopen if I notice anything untoward.





^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#23536: 25.1.50; viper-mode "/" search includes "(default ...) " prefix
  2016-05-14 15:51   ` Jim Meyering
@ 2016-05-14 17:41     ` Eli Zaretskii
  0 siblings, 0 replies; 4+ messages in thread
From: Eli Zaretskii @ 2016-05-14 17:41 UTC (permalink / raw
  To: Jim Meyering; +Cc: 23536

> From: Jim Meyering <jim@meyering.net>
> Date: Sat, 14 May 2016 08:51:24 -0700
> Cc: 23536-done@debbugs.gnu.org
> 
> > Please see if the patch below fixes the problem, and doesn't bring new
> > ones.  (I don't use viper-mode, and we don't have a test suite for it,
> > so I couldn't easily test the result beyond your simple recipe.)
> >
> > Thanks.
> >
> > diff --git a/lisp/emulation/viper-cmd.el b/lisp/emulation/viper-cmd.el
> > index da72b97..6951dbb 100644
> > --- a/lisp/emulation/viper-cmd.el
> > +++ b/lisp/emulation/viper-cmd.el
> > @@ -2127,6 +2127,7 @@ viper-read-string-with-history
> >
> >      (setq keymap (or keymap minibuffer-local-map)
> >           initial (or initial "")
> > +         viper-initial initial
> 
> Thank you. That does indeed solve the problem.
> I'm closing this for now and will reopen if I notice anything untoward.

Thanks, I pushed this to the master branch.





^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2016-05-14 17:41 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-05-14  5:31 bug#23536: 25.1.50; viper-mode "/" search includes "(default ...) " prefix Jim Meyering
2016-05-14  8:50 ` Eli Zaretskii
2016-05-14 15:51   ` Jim Meyering
2016-05-14 17:41     ` Eli Zaretskii

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.