]> git.eshelyaron.com Git - emacs.git/commitdiff
Update copyright.
authorKim F. Storm <storm@cua.dk>
Wed, 16 Jun 2004 15:10:55 +0000 (15:10 +0000)
committerKim F. Storm <storm@cua.dk>
Wed, 16 Jun 2004 15:10:55 +0000 (15:10 +0000)
13 files changed:
src/abbrev.c
src/atimer.c
src/atimer.h
src/blockinput.h
src/buffer.h
src/callproc.c
src/casefiddle.c
src/dispextern.h
src/window.h
src/xselect.c
src/xsmfns.c
src/xterm.c
src/xterm.h

index 41e329ac95d199030e549847a120bbb219db0947..ac132f20023f1a482215a9590229ff6d64f1e9b3 100644 (file)
@@ -1,5 +1,5 @@
 /* Primitives for word-abbrev mode.
-   Copyright (C) 1985, 1986, 1993, 1996, 1998, 2001
+   Copyright (C) 1985, 1986, 1993, 1996, 1998, 2001,02,03,04
    Free Software Foundation, Inc.
 
 This file is part of GNU Emacs.
index 2ddc7427f5619fbcb09dc6521ecebb83b3307789..7e78bdad9c0edb30a34f61dc559bb53b21d585ab 100644 (file)
@@ -1,5 +1,5 @@
 /* Asynchronous timers.
-   Copyright (C) 2000 Free Software Foundation, Inc.
+   Copyright (C) 2000, 2004 Free Software Foundation, Inc.
 
 This file is part of GNU Emacs.
 
index 3ecc97e55113c37e7be5178658be8a6b9f41bad8..f987a47a6bd14bfce5611ccdcaacbc70ca56e8c3 100644 (file)
@@ -1,5 +1,5 @@
 /* Asynchronous timers.
-   Copyright (C) 2000 Free Software Foundation, Inc.
+   Copyright (C) 2000, 2003 Free Software Foundation, Inc.
 
 This file is part of GNU Emacs.
 
index e9f2f3bc2171b3c5f3a31ce21d50afdb98562d84..a4c8a9b9c2285e32e79b70d479bda4e929b504da 100644 (file)
@@ -1,5 +1,5 @@
 /* blockinput.h - interface to blocking complicated interrupt-driven input.
-   Copyright (C) 1989, 1993 Free Software Foundation, Inc.
+   Copyright (C) 1989, 1993, 2004 Free Software Foundation, Inc.
 
 This file is part of GNU Emacs.
 
index b5227cb9981154b48a199db04d63c12de4d0283e..e59211d4111c7d27890e86ec4949a5b42eb8038d 100644 (file)
@@ -1,5 +1,5 @@
 /* Header file for the buffer manipulation primitives.
-   Copyright (C) 1985, 86, 93, 94, 95, 97, 1998, 1999, 2000, 01, 2003
+   Copyright (C) 1985,86,93,94,95,97,98,99,2000,01,03,04
    Free Software Foundation, Inc.
 
 This file is part of GNU Emacs.
index 73d81d81b18853c59db59410db93266cfddfcb4b..10e98ad1a365103cb0447d7f82a872420769b776 100644 (file)
@@ -1,5 +1,5 @@
 /* Synchronous subprocess invocation for GNU Emacs.
-   Copyright (C) 1985,86,87,88,93,94,95,99, 2000, 2001
+   Copyright (C) 1985,86,87,88,93,94,95,99, 2000,01,02,03,04
    Free Software Foundation, Inc.
 
 This file is part of GNU Emacs.
@@ -130,6 +130,8 @@ int synch_process_termsig;
    this is exit code of synchronous subprocess.  */
 int synch_process_retcode;
 
+extern Lisp_Object Qredisplay_dont_pause;
+
 extern Lisp_Object Vdoc_file_name;
 
 extern Lisp_Object Vfile_name_coding_system, Vdefault_file_name_coding_system;
@@ -220,9 +222,9 @@ usage: (call-process PROGRAM &optional INFILE BUFFER DISPLAY &rest ARGS)  */)
   int fd[2];
   int filefd;
   register int pid;
-  char buf[16384];
+  char buf[16384*4];
   char *bufptr = buf;
-  int bufsize = 16384;
+  int bufsize = sizeof buf;
   int count = SPECPDL_INDEX ();
 
   register const unsigned char **new_argv
@@ -771,6 +773,7 @@ usage: (call-process PROGRAM &optional INFILE BUFFER DISPLAY &rest ARGS)  */)
 
            if (this_read == 0)
              {
+//             fprintf(stderr, "read 0, total=%d\n", total_read);
                process_coding.mode |= CODING_MODE_LAST_BLOCK;
                break;
              }
@@ -778,6 +781,8 @@ usage: (call-process PROGRAM &optional INFILE BUFFER DISPLAY &rest ARGS)  */)
            nread += this_read;
            total_read += this_read;
 
+//         fprintf(stderr, "read %d+%d of %d, total=%d\n", nread, this_read, bufsize, total_read);
+
            if (display_on_the_fly)
              break;
          }
@@ -830,6 +835,8 @@ usage: (call-process PROGRAM &optional INFILE BUFFER DISPLAY &rest ARGS)  */)
                    continue;
                  }
 
+//             fprintf(stderr, "produced %d\n", process_coding.produced);
+
                if (process_coding.produced > 0)
                  insert_1_both (decoding_buf, process_coding.produced_char,
                                 process_coding.produced, 0, 1, 0);
@@ -929,10 +936,15 @@ usage: (call-process PROGRAM &optional INFILE BUFFER DISPLAY &rest ARGS)  */)
 
        if (!NILP (display) && INTERACTIVE)
          {
+           extern int windows_or_buffers_changed;
+           int count = SPECPDL_INDEX ();
+
            if (first)
              prepare_menu_bars ();
            first = 0;
+           specbind (Qredisplay_dont_pause, Qt);
            redisplay_preserve_echo_area (1);
+           unbind_to (count, Qnil);
          }
        immediate_quit = 1;
        QUIT;
index 6387c4bc845374ae5538fb48bbb27c99be6f2c4e..4672bd317b9e2bf46983453d2e07eeffab5a248d 100644 (file)
@@ -1,5 +1,6 @@
 /* GNU Emacs case conversion functions.
-   Copyright (C) 1985, 1994, 1997 Free Software Foundation, Inc.
+   Copyright (C) 1985,94,97,98,99, 2001, 2002, 2004
+   Free Software Foundation, Inc.
 
 This file is part of GNU Emacs.
 
index 6583e6a40c4952a68fd9596a6312efb1ef66b25e..10754a4c01d6d1ba23209118e37c4f15bb5002dc 100644 (file)
@@ -1,5 +1,5 @@
 /* Interface definitions for display code.
-   Copyright (C) 1985, 1993, 1994, 1997, 1998, 1999, 2000, 2001, 2002, 2003
+   Copyright (C) 1985,93,94,97,98,99, 2000,01,02,03, 2004
      Free Software Foundation, Inc.
 
 This file is part of GNU Emacs.
index ab79b0eaad98c1794bd6bef13c807a9a5601b5ea..1e53ae659cb802a6b7df23050bbe2382190c97c8 100644 (file)
@@ -1,5 +1,5 @@
 /* Window definitions for GNU Emacs.
-   Copyright (C) 1985, 1986, 1993, 1995, 1997, 1998, 1999, 2000, 2001, 2003
+   Copyright (C) 1985,86,93,95,97,98,99, 2000,01,03,04
    Free Software Foundation, Inc.
 
 This file is part of GNU Emacs.
index b4d61f7c9a97d7a5b70029939cf2dd94a14c84df..7be238651a0d53916371db444e73213bc14381b0 100644 (file)
@@ -1,5 +1,5 @@
 /* X Selection processing for Emacs.
-   Copyright (C) 1993, 1994, 1995, 1996, 1997, 2000, 2001, 2003
+   Copyright (C) 1993, 1994, 1995, 1996, 1997, 2000, 2001, 2003, 2004
    Free Software Foundation.
 
 This file is part of GNU Emacs.
@@ -2576,7 +2576,7 @@ are ignored.  */)
   if (event.xclient.format != 8 && event.xclient.format != 16
       && event.xclient.format != 32)
     error ("FORMAT must be one of 8, 16 or 32");
-  
+
   if (FRAMEP (dest) || NILP (dest))
     {
       struct frame *fdest = check_x_frame (dest);
index e486e5c6e322384003af36bd3129ea3436b35294..9a6a7ccefb864607bd984c6e3da020c1cb840057 100644 (file)
@@ -1,6 +1,6 @@
 /* Session management module for systems which understand the X Session
    management protocol.
-   Copyright (C) 2002 Free Software Foundation, Inc.
+   Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc.
 
 This file is part of GNU Emacs.
 
index 60ec7ec88300f9a459627de52edb89f2d4f93d12..c7b0c2f0a4576a9edebb54f27793e8b26d20cd6e 100644 (file)
@@ -1,5 +1,5 @@
 /* X Communication module for terminals which understand the X protocol.
-   Copyright (C) 1989, 93, 94, 95, 96, 97, 98, 1999, 2000, 01, 02, 2003
+   Copyright (C) 1989, 93, 94, 95, 96, 97, 98, 1999, 2000,01,02,03,04
    Free Software Foundation, Inc.
 
 This file is part of GNU Emacs.
index 9436f44ed6fc8327dde5f96fb98b53ef98578e20..1ff0201928da165061e12e9fee418da83ae93a3f 100644 (file)
@@ -1,5 +1,5 @@
 /* Definitions and headers for communication with X protocol.
-   Copyright (C) 1989, 1993, 1994, 1998, 1999, 2000, 2001, 2001
+   Copyright (C) 1989, 1993, 1994, 1998, 1999, 2000,01,02,03,04
    Free Software Foundation, Inc.
 
 This file is part of GNU Emacs.