]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove period at end of error message.
authorJan Djärv <jan.h.d@swipnet.se>
Sun, 16 Nov 2003 16:17:09 +0000 (16:17 +0000)
committerJan Djärv <jan.h.d@swipnet.se>
Sun, 16 Nov 2003 16:17:09 +0000 (16:17 +0000)
src/ChangeLog
src/ccl.c
src/emacs.c
src/fontset.c
src/frame.c
src/process.c
src/sunfns.c
src/w32bdf.c
src/w32fns.c

index 6960b655801d30c9378b227ddff02b367983e5cc..f8b41d541cdf0be383baffc188f02ef0bdc806f3 100644 (file)
@@ -1,5 +1,14 @@
 2003-11-16  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
 
+       * w32fns.c (XPutPixel):
+       * w32bdf.c (w32_init_bdf_font): 
+       * sunfns.c (sel_read): 
+       * process.c (Fmake_network_process): 
+       * frame.c (store_frame_param): 
+       * fontset.c (Fset_fontset_font): 
+       * emacs.c (shut_down_emacs): 
+       * ccl.c (ccl_driver):  Remove period at end of error message.
+
        * config.in: Regenerate.
 
        * xfns.c (x_window_to_frame, x_any_window_to_frame)
index ae42f2419c2e384faf0bf4b459d3f6dc92201282..81e90319e52013926f6c8ad23bf21c5c75593562 100644 (file)
--- a/src/ccl.c
+++ b/src/ccl.c
@@ -1872,7 +1872,7 @@ ccl_driver (ccl, source, destination, src_bytes, dst_bytes, consumed)
          break;
 
        default:
-         sprintf(msg, "\nCCL: Unknown error type (%d).", ccl->status);
+         sprintf(msg, "\nCCL: Unknown error type (%d)", ccl->status);
        }
 
       msglen = strlen (msg);
index 62f16877184cb80ae7b13a16ed8a09d96279607c..0b2e678329c24fd86459e790e106440aa86185a4 100644 (file)
@@ -1994,7 +1994,7 @@ shut_down_emacs (sig, no_x, stuff)
        fflush (stdout);
        reset_sys_modes ();
        if (sig && sig != SIGTERM)
-         fprintf (stderr, "Fatal error (%d).", sig);
+         fprintf (stderr, "Fatal error (%d)", sig);
       }
   }
 #else
index 990c1bbb9fa5f8392b451902ceea1bea90c1f164..e462387beae31db00ca68c2f9f5eb6dfc5a44395 100644 (file)
@@ -1012,7 +1012,7 @@ name of a font, REGISTRY is a registry name of a font.  */)
       from = XINT (XCAR (character));
       to = XINT (XCDR (character));
       if (!char_valid_p (from, 0) || !char_valid_p (to, 0))
-       error ("Character range should be by non-generic characters.");
+       error ("Character range should be by non-generic characters");
       if (!NILP (name)
          && (SINGLE_BYTE_CHAR_P (from) || SINGLE_BYTE_CHAR_P (to)))
        error ("Can't change font for a single byte character");
index 3a3758b93e0c9cd93f67ee2c43074eaa7e7f6dbc..934c11d98bc776dd9d229adc8905a3e2acb48c66 100644 (file)
@@ -2018,7 +2018,7 @@ store_frame_param (f, prop, val)
   if (EQ (prop, Qminibuffer) && WINDOWP (val))
     {
       if (! MINI_WINDOW_P (XWINDOW (val)))
-       error ("Surrogate minibuffer windows must be minibuffer windows.");
+       error ("Surrogate minibuffer windows must be minibuffer windows");
 
       if ((FRAME_HAS_MINIBUF_P (f) || FRAME_MINIBUF_ONLY_P (f))
          && !EQ (val, f->minibuffer_window))
index d04f8c03b4f876ee93b05aa5d2bf8e8d540cb5da..ed0d5fe765bd0f060590e0478d501239680ef4d4 100644 (file)
@@ -3028,7 +3028,7 @@ usage: (make-network-process &rest ARGS)  */)
              {
                int optval = 1;
                if (setsockopt (s, SOL_SOCKET, SO_REUSEADDR, &optval, sizeof optval))
-                 report_file_error ("Cannot set reuse option on server socket.", Qnil);
+                 report_file_error ("Cannot set reuse option on server socket", Qnil);
              }
 
          if (bind (s, lres->ai_addr, lres->ai_addrlen))
index d1c7bcd0c64a642ad3c720e8bb91eecbf31bb5c6..13fdfd3a1b7aada70fd6410932ffb7b41e24b16b 100644 (file)
@@ -299,7 +299,7 @@ sel_read (sel, file)
     error("fread botch in sel_read");
     return(-1);
   } else if (n < 0) {
-    error("Error reading selection.");
+    error("Error reading selection");
     return(-1);
   }
   /*
index 567030a23e8abee7a6cb27894b0444bb286a5ad2..04739b8e84617837dacca0720acaea726b2bd747 100644 (file)
@@ -247,7 +247,7 @@ w32_init_bdf_font(char *filename)
     hbdf_bmp_heap = HeapCreate(0, BDF_BITMAP_HEAP_INITIAL_SIZE, 0);
 
   if (!hbdf_cp_heap || !hbdf_bmp_heap)
-    error("Fail to create heap for BDF.");
+    error("Fail to create heap for BDF");
 
   hfile = CreateFile(filename, GENERIC_READ, FILE_SHARE_READ, NULL,
                     OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
@@ -257,13 +257,13 @@ w32_init_bdf_font(char *filename)
       (fileinfo.nFileSizeLow > BDF_FILE_SIZE_MAX))
     {
       CloseHandle(hfile);
-      error("Fail to open BDF file.");
+      error("Fail to open BDF file");
     }
   hfilemap = CreateFileMapping(hfile, NULL, PAGE_READONLY, 0, 0, NULL);
   if (hfilemap == INVALID_HANDLE_VALUE)
     {
       CloseHandle(hfile);
-      error("Can't map font.");
+      error("Can't map font");
     }
 
   font = MapViewOfFile(hfilemap, FILE_MAP_READ, 0, 0, 0);
@@ -272,7 +272,7 @@ w32_init_bdf_font(char *filename)
     {
       CloseHandle(hfile);
       CloseHandle(hfilemap);
-      error("Can't view font.");
+      error("Can't view font");
     }
 
   bdffontp = (bdffont *) xmalloc(sizeof(bdffont));
index 9a45741c35b8114823d87e0cf2afe60a17b53b97..d8572265bef95a19ca29013668b8159d084d9457 100644 (file)
@@ -9679,7 +9679,7 @@ static void XPutPixel (ximg, x, y, color)
        *pixel = *pixel & ~(1 << x % 8);
     }
   else
-    image_error ("XPutPixel: palette image not supported.", Qnil, Qnil);
+    image_error ("XPutPixel: palette image not supported", Qnil, Qnil);
 }
 
 /* Create IMG->pixmap from an array COLORS of XColor structures, whose