]> code.delx.au - gnu-emacs/commitdiff
Space/tab mixup.
authorJuanma Barranquero <lekktu@gmail.com>
Fri, 24 Nov 2006 10:31:26 +0000 (10:31 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Fri, 24 Nov 2006 10:31:26 +0000 (10:31 +0000)
lib-src/emacsclient.c
lisp/play/gomoku.el
src/keyboard.c
src/m/ibmrs6000.h
src/m/pfa50.h
src/msdos.c
src/syntax.c
src/sysdep.c
src/w32term.c
src/xdisp.c
src/xselect.c

index 4bb9af66359735b48a90e897b186b440a963a397..3040206ef3422e2bd3c45d4923a4b65a739a005c 100644 (file)
@@ -463,7 +463,7 @@ file_name_absolute_p (filename)
 }
 
 #ifdef WINDOWSNT
-/* Wrapper to make WSACleanup a cdecl, as required by atexit().         */
+/* Wrapper to make WSACleanup a cdecl, as required by atexit().  */
 void
 __cdecl close_winsock ()
 {
index ee321b44d31dc54b0aeb683e784e1b783f7c5dbb..8b23cbb59d4d6f404a2732fa7b0be69060bef4ec 100644 (file)
@@ -29,7 +29,7 @@
 
 ;; RULES:
 ;;
-;; Gomoku is a game played between two players on a rectangular board. Each
+;; Gomoku is a game played between two players on a rectangular board.  Each
 ;; player, in turn, marks a free square of its choice. The winner is the first
 ;; one to mark five contiguous squares in any direction (horizontally,
 ;; vertically or diagonally).
@@ -212,9 +212,9 @@ is non-nil."
 ;;;
 
 ;; The board is a rectangular grid. We code empty squares with 0, X's with 1
-;; and O's with 6. The rectangle is recorded in a one dimensional vector
-;; containing padding squares (coded with -1). These squares allow us to
-;; detect when we are trying to move out of the board. We denote a square by
+;; and O's with 6.  The rectangle is recorded in a one dimensional vector
+;; containing padding squares (coded with -1).  These squares allow us to
+;; detect when we are trying to move out of the board.  We denote a square by
 ;; its (X,Y) coords, or by the INDEX corresponding to them in the vector.  The
 ;; leftmost topmost square has coords (1,1) and index gomoku-board-width + 2.
 ;; Similarly, vectors between squares may be given by two DX, DY coords or by
index 364fa893539e09cf0e4f30b34a777ebf14d2f58b..384fc888e39fd75fbaa18021448907333db7e733 100644 (file)
@@ -5706,7 +5706,7 @@ make_lispy_event (event)
        position = make_lispy_position (f, &event->x, &event->y,
                                        event->timestamp);
 
-       /* Set double or triple modifiers to indicate the wheel speed.  */
+       /* Set double or triple modifiers to indicate the wheel speed.  */
        {
          /* On window-system frames, use the value of
             double-click-fuzz as is.  On other frames, interpret it
@@ -5760,7 +5760,7 @@ make_lispy_event (event)
 
          if (event->modifiers & up_modifier)
            {
-             /* Emit a wheel-up event.  */
+             /* Emit a wheel-up event.  */
              event->modifiers &= ~up_modifier;
              symbol_num = 0;
            }
@@ -5775,7 +5775,7 @@ make_lispy_event (event)
               the up_modifier set.  */
            abort ();
 
-         /* Get the symbol we should use for the wheel event.  */
+         /* Get the symbol we should use for the wheel event.  */
          head = modify_event_symbol (symbol_num,
                                      event->modifiers,
                                      Qmouse_click,
index 3d3e45eda81cdb39942c7e17d73b296a5e9c0f84..10b43bf8246de9230f2c7907cd1b3774764d6304 100644 (file)
@@ -44,7 +44,7 @@ Boston, MA 02110-1301, USA.  */
 #define IBMR2AIX
 
 /* Use type int rather than a union, to represent Lisp_Object */
-/* This is desirable for most machines.         */
+/* This is desirable for most machines.  */
 
 #define NO_UNION_TYPE
 
@@ -72,7 +72,7 @@ Boston, MA 02110-1301, USA.  */
 
 /* The data segment in this machine always starts at address 0x20000000.
    An address of data cannot be stored correctly in a Lisp object;
-   we always lose the high bits.  We must tell XPNTR to add them back. */
+   we always lose the high bits.  We must tell XPNTR to add them back.  */
 
 #ifndef USG5_4
 #define DATA_SEG_BITS 0x20000000
@@ -86,7 +86,7 @@ Boston, MA 02110-1301, USA.  */
 #define PURE_SEG_BITS 0x30000000
 
 /* Use shared memory.  */
-/* This is turned off because it does not always work. See etc/AIX.DUMP.  */
+/* This is turned off because it does not always work.  See etc/AIX.DUMP.  */
 /* #define HAVE_SHM */
 #define SHMKEY 5305035         /* used for shared memory code segments */
 #endif /* CANNOT_DUMP */
index 85d281073f1ea855b900aeb1a279a2f6714f0586..0b1511fd8e745db8bd5732b5afb442cf583751d4 100644 (file)
@@ -50,7 +50,7 @@ Boston, MA 02110-1301, USA.  */
 #define NO_REMAP
 
 /* Define TEXT_START_ADDR if your linker don't set execute point to _start.
-   If it needed, temacs always CORE-DUMP.      */
+   If it needed, temacs always CORE-DUMP.  */
 
 #define TEXT_START_ADDR __start
 
index 61e167a194611073ca1d9097e665174926df1682..00ef84dc189400a177755edfeb1b0416e93e0602 100644 (file)
@@ -2639,7 +2639,7 @@ check_x (void)
 #define Ctrl   0x0200  /* ctrl scan-code */
 #define Shift  0x0400  /* shift scan-code */
 
-static int extended_kbd; /* 101 (102) keyboard present.        */
+static int extended_kbd; /* 101 (102) keyboard present. */
 
 struct kbd_translate {
   unsigned char  sc;
index 052191d5fef8f670f5306178551fddaef5bdb053..55f73d6d1066c87a995bdbff445015a57707434b 100644 (file)
@@ -1470,7 +1470,7 @@ skip_chars (forwardp, syntaxp, string, lim, handle_iso_classes)
              const unsigned char *class_beg = str + i_byte + 1;
              const unsigned char *class_end = class_beg;
              const unsigned char *class_limit = str + size_byte - 2;
-             /* Leave room for the null.        */
+             /* Leave room for the null.  */
              unsigned char class_name[CHAR_CLASS_MAX_LENGTH + 1];
              re_wctype_t cc;
 
index 3fd134e476d9fc89503b689e1b8e3546d134e08c..625b5d619aba5eac8aed9b5d3e0a29ff5222c0e5 100644 (file)
@@ -3756,7 +3756,7 @@ set_file_times (filename, atime, mtime)
  *                                     sdcsvax!rmr or rmr@uscd
  *
  * Severely hacked over by John Gilmore to make a 4.2BSD compatible
- * subroutine. 11Mar86; hoptoad!gnu
+ * subroutine.  11Mar86; hoptoad!gnu
  *
  * Modified by rmtodd@uokmax 6-28-87 -- when making an already existing dir,
  * subroutine didn't return EEXIST.  It does now.
index e22a9dbe1ab344a62304bbc8ff9bd1d39fa7d065..13167385234bca71d1bcce882679f23345388639 100644 (file)
@@ -4439,7 +4439,7 @@ w32_read_socket (sd, expected, hold_quit)
                /* Ignore any mouse motion that happened before this
                   event; any subsequent mouse-movement Emacs events
                   should reflect only motion after the
-                  ButtonPress.  */
+                  ButtonPress.  */
                f->mouse_moved = 0;
              }
            last_mouse_frame = f;
index 8dc34b776c4010a1383c32f5765584a9ea0fffb8..909ec688affd7e60c459b615416bd48a92dda14f 100644 (file)
@@ -17384,7 +17384,7 @@ pint2str (buf, width, d)
 
 /* Write a null-terminated, right justified decimal and "human
    readable" representation of the nonnegative integer D to BUF using
-   a minimal field width WIDTH.         D should be smaller than 999.5e24. */
+   a minimal field width WIDTH.  D should be smaller than 999.5e24. */
 
 static const char power_letter[] =
   {
index cb76e229e55aa49279727c4fa384328950452ef1..72d6aa071ca3b5d722b208dc4d439abcbbf3c65c 100644 (file)
@@ -835,7 +835,7 @@ x_reply_selection_request (event, format, data, size, type)
            break;
 
          /* Now wait for the requester to ack this chunk by deleting the
-            property.   This can run random lisp code or signal.  */
+            property.  This can run random lisp code or signal.  */
          TRACE1 ("Waiting for increment ACK (deletion of %s)",
                  XGetAtomName (display, reply.property));
          wait_for_property_change (wait_object);
@@ -2710,11 +2710,11 @@ FRAME is on.  If FRAME is nil, the selected frame is used.  */)
   else
     error ("ATOM must be a symbol or a string");
 
-  for (i = 0; i < dpyinfo->x_dnd_atoms_length; ++i) 
+  for (i = 0; i < dpyinfo->x_dnd_atoms_length; ++i)
     if (dpyinfo->x_dnd_atoms[i] == x_atom)
       return Qnil;
 
-  if (dpyinfo->x_dnd_atoms_length == dpyinfo->x_dnd_atoms_size) 
+  if (dpyinfo->x_dnd_atoms_length == dpyinfo->x_dnd_atoms_size)
     {
       dpyinfo->x_dnd_atoms_size *= 2;
       dpyinfo->x_dnd_atoms = xrealloc (dpyinfo->x_dnd_atoms,
@@ -2744,7 +2744,7 @@ x_handle_dnd_message (f, event, dpyinfo, bufp)
   int idata[5];
   size_t i;
 
-  for (i = 0; i < dpyinfo->x_dnd_atoms_length; ++i) 
+  for (i = 0; i < dpyinfo->x_dnd_atoms_length; ++i)
     if (dpyinfo->x_dnd_atoms[i] == event->message_type) break;
 
   if (i == dpyinfo->x_dnd_atoms_length) return 0;