qemacs-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemacs-commit] qemacs qe.c


From: Charlie Gordon
Subject: [Qemacs-commit] qemacs qe.c
Date: Mon, 20 Apr 2009 08:12:32 +0000

CVSROOT:        /cvsroot/qemacs
Module name:    qemacs
Changes by:     Charlie Gordon <chqrlie>        09/04/20 08:12:32

Modified files:
        .              : qe.c 

Log message:
        more informative status messages

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/qemacs/qe.c?cvsroot=qemacs&r1=1.95&r2=1.96

Patches:
Index: qe.c
===================================================================
RCS file: /cvsroot/qemacs/qemacs/qe.c,v
retrieving revision 1.95
retrieving revision 1.96
diff -u -b -r1.95 -r1.96
--- qe.c        2 May 2008 16:04:09 -0000       1.95
+++ qe.c        20 Apr 2009 08:12:31 -0000      1.96
@@ -3881,7 +3881,7 @@
     if (d) {
         exec_command(s, d, argval, 0);
     } else {
-        put_status(s, "No match");
+        put_status(s, "No command %s", cmd);
     }
 }
 
@@ -3987,7 +3987,7 @@
 
     if (qs->defining_macro) {
         qs->defining_macro = 0;
-        put_status(s, "Can't execute macro while defining one");
+        put_status(s, "Cannot execute macro while defining one");
         return;
     }
 
@@ -4554,6 +4554,7 @@
     compute_client_area(s);
     /* link window in window list */
     s->next_window = qs->first_window;
+    /* CG: should append window to end of list, esp. for popups */
     qs->first_window = s;
     if (!qs->active_window)
         qs->active_window = s;
@@ -5384,7 +5385,7 @@
 static void do_load1(EditState *s, const char *filename1,
                      int kill_buffer, int load_resource)
 {
-    u8 buf[1025];
+    u8 buf[4097];
     char filename[MAX_FILENAME_SIZE];
     int mode, buf_size;
     ModeDef *selected_mode;




reply via email to

[Prev in Thread] Current Thread [Next in Thread]