Andreas Krennmair:
[apps/madmutt.git] / enter.c
diff --git a/enter.c b/enter.c
index 356ab21..6cf9d8d 100644 (file)
--- a/enter.c
+++ b/enter.c
  *     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)