Mercurial > emacs
changeset 74145:8eceefbbcde7
Space/tab mixup.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Fri, 24 Nov 2006 10:31:26 +0000 |
parents | b302d34b7eae |
children | c3bc7f03ff41 |
files | 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 |
diffstat | 11 files changed, 21 insertions(+), 21 deletions(-) [+] |
line wrap: on
line diff
--- a/lib-src/emacsclient.c Fri Nov 24 10:28:38 2006 +0000 +++ b/lib-src/emacsclient.c Fri Nov 24 10:31:26 2006 +0000 @@ -463,7 +463,7 @@ } #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 () {
--- a/lisp/play/gomoku.el Fri Nov 24 10:28:38 2006 +0000 +++ b/lisp/play/gomoku.el Fri Nov 24 10:31:26 2006 +0000 @@ -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 @@ ;;; ;; 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
--- a/src/keyboard.c Fri Nov 24 10:28:38 2006 +0000 +++ b/src/keyboard.c Fri Nov 24 10:31:26 2006 +0000 @@ -5706,7 +5706,7 @@ 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 @@ 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 @@ 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,
--- a/src/m/ibmrs6000.h Fri Nov 24 10:28:38 2006 +0000 +++ b/src/m/ibmrs6000.h Fri Nov 24 10:31:26 2006 +0000 @@ -44,7 +44,7 @@ #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 @@ /* 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 @@ #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 */
--- a/src/m/pfa50.h Fri Nov 24 10:28:38 2006 +0000 +++ b/src/m/pfa50.h Fri Nov 24 10:31:26 2006 +0000 @@ -50,7 +50,7 @@ #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
--- a/src/msdos.c Fri Nov 24 10:28:38 2006 +0000 +++ b/src/msdos.c Fri Nov 24 10:31:26 2006 +0000 @@ -2639,7 +2639,7 @@ #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;
--- a/src/syntax.c Fri Nov 24 10:28:38 2006 +0000 +++ b/src/syntax.c Fri Nov 24 10:31:26 2006 +0000 @@ -1470,7 +1470,7 @@ 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;
--- a/src/sysdep.c Fri Nov 24 10:28:38 2006 +0000 +++ b/src/sysdep.c Fri Nov 24 10:31:26 2006 +0000 @@ -3756,7 +3756,7 @@ * 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.
--- a/src/w32term.c Fri Nov 24 10:28:38 2006 +0000 +++ b/src/w32term.c Fri Nov 24 10:31:26 2006 +0000 @@ -4439,7 +4439,7 @@ /* 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;
--- a/src/xdisp.c Fri Nov 24 10:28:38 2006 +0000 +++ b/src/xdisp.c Fri Nov 24 10:31:26 2006 +0000 @@ -17384,7 +17384,7 @@ /* 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[] = {
--- a/src/xselect.c Fri Nov 24 10:28:38 2006 +0000 +++ b/src/xselect.c Fri Nov 24 10:31:26 2006 +0000 @@ -835,7 +835,7 @@ 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 @@ 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 @@ 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;