X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=enter.c;h=6cf9d8dd5f15a7408abfc36b272ff39285ebba3e;hp=356ab21de97b71e82c790d52ee721cc88dc603e5;hb=1bbedb2dcb610160fe7fd2b44bd098248bfd83a0;hpb=7259a4b7e7de67679ee74c966439dbb43602a1f1 diff --git a/enter.c b/enter.c index 356ab21..6cf9d8d 100644 --- a/enter.c +++ b/enter.c @@ -17,6 +17,10 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. */ +#if HAVE_CONFIG_H +# include "config.h" +#endif + #include "mutt.h" #include "mutt_menu.h" #include "mutt_curses.h" @@ -614,6 +618,13 @@ self_insert: /* use the raw keypress */ ch = LastKey; + if ((ch == '#') && (flags & M_LASTFOLDER)) + { + rv = 2; + my_wcstombs (buf, buflen, state->wbuf, state->lastchar); + goto bye; + } + #ifdef KEY_ENTER /* treat ENTER the same as RETURN */ if (ch == KEY_ENTER)