5e07eae87e
OBS-URL: https://build.opensuse.org/package/show/server:mail/alpine?expand=0&rev=35084135f0432b082855d7b1815c8292
41 lines
1.4 KiB
Diff
41 lines
1.4 KiB
Diff
diff -rc alpine-2.10/pico/display.c alpine-2.10.insertpat/pico/display.c
|
|
*** alpine-2.10/pico/display.c 2013-01-11 11:25:29.000000000 -0700
|
|
--- alpine-2.10.insertpat/pico/display.c 2013-01-11 20:43:15.000000000 -0700
|
|
***************
|
|
*** 1760,1765 ****
|
|
--- 1760,1777 ----
|
|
|
|
continue;
|
|
|
|
+ case (CTRL|'N'): /* Insert pattern */
|
|
+ if (pat[0] != '\0'){
|
|
+ ucs4_strncpy(buf+ucs4_strlen(buf), pat, NPAT);
|
|
+ pputs(pat,1);
|
|
+ b = &buf[ucs4_strlen(buf)];
|
|
+ dline.vused += ucs4_strlen(pat);
|
|
+ changed = TRUE;
|
|
+ }
|
|
+ else
|
|
+ (*term.t_beep)();
|
|
+ continue;
|
|
+
|
|
case (CTRL|'G') : /* CTRL-G help */
|
|
if(term.t_mrow == 0 && km_popped == 0){
|
|
movecursor(term.t_nrow-2, 0);
|
|
diff -rc alpine-2.10/pico/search.c alpine-2.10.insertpat/pico/search.c
|
|
*** alpine-2.10/pico/search.c 2013-01-11 11:25:29.000000000 -0700
|
|
--- alpine-2.10.insertpat/pico/search.c 2013-01-11 20:43:15.000000000 -0700
|
|
***************
|
|
*** 76,81 ****
|
|
--- 76,85 ----
|
|
N_("~ Hitting only ~R~e~t~u~r~n or at the prompt will cause the"),
|
|
N_(" search to be made with the default value."),
|
|
" ",
|
|
+ N_("~ Hitting ~^~N will reinsert the last string you searched for"),
|
|
+ N_(" so that you can edit it (in case you made a mistake entering the"),
|
|
+ N_(" search pattern the first time)."),
|
|
+ " ",
|
|
N_(" The text search is not case sensitive, and will examine the"),
|
|
N_(" entire message."),
|
|
" ",
|