diff options
Diffstat (limited to 'src')
120 files changed, 172 insertions, 143 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index f8dc0be7ed5..e3c212924b3 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -23,6 +23,12 @@ | |||
| 23 | * macterm.c [TARGET_API_MAC_CARBON] (mac_handle_window_event): | 23 | * macterm.c [TARGET_API_MAC_CARBON] (mac_handle_window_event): |
| 24 | Don't use invisible frame as parent window for repositioning. | 24 | Don't use invisible frame as parent window for repositioning. |
| 25 | 25 | ||
| 26 | 2007-08-10 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 27 | |||
| 28 | * print.c (new_backquote_output): Rename from old_backquote_output. | ||
| 29 | (print): Inverse its logic (according to its name) so as to match the | ||
| 30 | behavior of new_backquote_flag in lread.c. | ||
| 31 | |||
| 26 | 2007-08-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | 32 | 2007-08-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> |
| 27 | 33 | ||
| 28 | * gmalloc.c (posix_memalign): New function. | 34 | * gmalloc.c (posix_memalign): New function. |
| @@ -41,6 +47,10 @@ | |||
| 41 | (mac_handle_window_event) [USE_MAC_TOOLBAR]: Add further workaround | 47 | (mac_handle_window_event) [USE_MAC_TOOLBAR]: Add further workaround |
| 42 | for window repositioning. | 48 | for window repositioning. |
| 43 | 49 | ||
| 50 | 2007-08-08 Glenn Morris <rgm@gnu.org> | ||
| 51 | |||
| 52 | * Replace `iff' in doc-strings and comments. | ||
| 53 | |||
| 44 | 2007-08-07 Chong Yidong <cyd@stupidchicken.com> | 54 | 2007-08-07 Chong Yidong <cyd@stupidchicken.com> |
| 45 | 55 | ||
| 46 | * xdisp.c (move_it_by_lines): Remove incorrect optimization. | 56 | * xdisp.c (move_it_by_lines): Remove incorrect optimization. |
diff --git a/src/buffer.h b/src/buffer.h index 65cfef4f04f..ed99dc4ffb1 100644 --- a/src/buffer.h +++ b/src/buffer.h | |||
| @@ -561,7 +561,7 @@ struct buffer | |||
| 561 | Lisp_Object filename; | 561 | Lisp_Object filename; |
| 562 | /* Dir for expanding relative file names. */ | 562 | /* Dir for expanding relative file names. */ |
| 563 | Lisp_Object directory; | 563 | Lisp_Object directory; |
| 564 | /* True iff this buffer has been backed up (if you write to the | 564 | /* True if this buffer has been backed up (if you write to the |
| 565 | visited file and it hasn't been backed up, then a backup will | 565 | visited file and it hasn't been backed up, then a backup will |
| 566 | be made). */ | 566 | be made). */ |
| 567 | /* This isn't really used by the C code, so could be deleted. */ | 567 | /* This isn't really used by the C code, so could be deleted. */ |
diff --git a/src/callproc.c b/src/callproc.c index 1ea0dfa43a6..bf7ea43b868 100644 --- a/src/callproc.c +++ b/src/callproc.c | |||
| @@ -117,7 +117,7 @@ Lisp_Object Vprocess_environment; | |||
| 117 | Lisp_Object Qbuffer_file_type; | 117 | Lisp_Object Qbuffer_file_type; |
| 118 | #endif /* DOS_NT */ | 118 | #endif /* DOS_NT */ |
| 119 | 119 | ||
| 120 | /* True iff we are about to fork off a synchronous process or if we | 120 | /* True if we are about to fork off a synchronous process or if we |
| 121 | are waiting for it. */ | 121 | are waiting for it. */ |
| 122 | int synch_process_alive; | 122 | int synch_process_alive; |
| 123 | 123 | ||
diff --git a/src/casetab.c b/src/casetab.c index bf0e022f139..952a320dda3 100644 --- a/src/casetab.c +++ b/src/casetab.c | |||
| @@ -40,7 +40,7 @@ static void set_identity (); | |||
| 40 | static void shuffle (); | 40 | static void shuffle (); |
| 41 | 41 | ||
| 42 | DEFUN ("case-table-p", Fcase_table_p, Scase_table_p, 1, 1, 0, | 42 | DEFUN ("case-table-p", Fcase_table_p, Scase_table_p, 1, 1, 0, |
| 43 | doc: /* Return t iff OBJECT is a case table. | 43 | doc: /* Return t if OBJECT is a case table. |
| 44 | See `set-case-table' for more information on these data structures. */) | 44 | See `set-case-table' for more information on these data structures. */) |
| 45 | (object) | 45 | (object) |
| 46 | Lisp_Object object; | 46 | Lisp_Object object; |
diff --git a/src/category.c b/src/category.c index 55e752045e7..7ea9b7810fa 100644 --- a/src/category.c +++ b/src/category.c | |||
| @@ -559,7 +559,7 @@ syms_of_category () | |||
| 559 | doc: /* List of pair (cons) of categories to determine word boundary. | 559 | doc: /* List of pair (cons) of categories to determine word boundary. |
| 560 | 560 | ||
| 561 | Emacs treats a sequence of word constituent characters as a single | 561 | Emacs treats a sequence of word constituent characters as a single |
| 562 | word (i.e. finds no word boundary between them) iff they belongs to | 562 | word (i.e. finds no word boundary between them) only if they belong to |
| 563 | the same charset. But, exceptions are allowed in the following cases. | 563 | the same charset. But, exceptions are allowed in the following cases. |
| 564 | 564 | ||
| 565 | \(1) The case that characters are in different charsets is controlled | 565 | \(1) The case that characters are in different charsets is controlled |
| @@ -659,13 +659,13 @@ while (0) | |||
| 659 | 659 | ||
| 660 | #define CCL_LookupIntConstTbl 0x13 /* Lookup multibyte character by | 660 | #define CCL_LookupIntConstTbl 0x13 /* Lookup multibyte character by |
| 661 | integer key. Afterwards R7 set | 661 | integer key. Afterwards R7 set |
| 662 | to 1 iff lookup succeeded. | 662 | to 1 if lookup succeeded. |
| 663 | 1:ExtendedCOMMNDRrrRRRXXXXXXXX | 663 | 1:ExtendedCOMMNDRrrRRRXXXXXXXX |
| 664 | 2:ARGUMENT(Hash table ID) */ | 664 | 2:ARGUMENT(Hash table ID) */ |
| 665 | 665 | ||
| 666 | #define CCL_LookupCharConstTbl 0x14 /* Lookup integer by multibyte | 666 | #define CCL_LookupCharConstTbl 0x14 /* Lookup integer by multibyte |
| 667 | character key. Afterwards R7 set | 667 | character key. Afterwards R7 set |
| 668 | to 1 iff lookup succeeded. | 668 | to 1 if lookup succeeded. |
| 669 | 1:ExtendedCOMMNDRrrRRRrrrXXXXX | 669 | 1:ExtendedCOMMNDRrrRRRrrrXXXXX |
| 670 | 2:ARGUMENT(Hash table ID) */ | 670 | 2:ARGUMENT(Hash table ID) */ |
| 671 | 671 | ||
diff --git a/src/charset.c b/src/charset.c index a6ec309cbb3..1a85cd39c72 100644 --- a/src/charset.c +++ b/src/charset.c | |||
| @@ -337,7 +337,7 @@ split_string (str, len, charset, c1, c2) | |||
| 337 | return 0; | 337 | return 0; |
| 338 | } | 338 | } |
| 339 | 339 | ||
| 340 | /* Return 1 iff character C has valid printable glyph. | 340 | /* Return 1 if character C has valid printable glyph. |
| 341 | Use the macro CHAR_PRINTABLE_P instead. */ | 341 | Use the macro CHAR_PRINTABLE_P instead. */ |
| 342 | int | 342 | int |
| 343 | char_printable_p (c) | 343 | char_printable_p (c) |
| @@ -1102,8 +1102,8 @@ DIMENSION, CHARS, and FINAL-CHAR. */) | |||
| 1102 | return CHARSET_SYMBOL (charset); | 1102 | return CHARSET_SYMBOL (charset); |
| 1103 | } | 1103 | } |
| 1104 | 1104 | ||
| 1105 | /* If GENERICP is nonzero, return nonzero iff C is a valid normal or | 1105 | /* If GENERICP is nonzero, return nonzero if C is a valid normal or |
| 1106 | generic character. If GENERICP is zero, return nonzero iff C is a | 1106 | generic character. If GENERICP is zero, return nonzero if C is a |
| 1107 | valid normal character. Do not call this function directly, | 1107 | valid normal character. Do not call this function directly, |
| 1108 | instead use macro CHAR_VALID_P. */ | 1108 | instead use macro CHAR_VALID_P. */ |
| 1109 | int | 1109 | int |
diff --git a/src/charset.h b/src/charset.h index 984d466d97d..c20766f910b 100644 --- a/src/charset.h +++ b/src/charset.h | |||
| @@ -413,8 +413,8 @@ extern int width_by_char_head[256]; | |||
| 413 | | ((c1) <= 0 ? 0 : (((c1) & 0x7F) << 7)))))) | 413 | | ((c1) <= 0 ? 0 : (((c1) & 0x7F) << 7)))))) |
| 414 | 414 | ||
| 415 | 415 | ||
| 416 | /* If GENERICP is nonzero, return nonzero iff C is a valid normal or | 416 | /* If GENERICP is nonzero, return nonzero if C is a valid normal or |
| 417 | generic character. If GENERICP is zero, return nonzero iff C is a | 417 | generic character. If GENERICP is zero, return nonzero if C is a |
| 418 | valid normal character. */ | 418 | valid normal character. */ |
| 419 | #define CHAR_VALID_P(c, genericp) \ | 419 | #define CHAR_VALID_P(c, genericp) \ |
| 420 | ((c) >= 0 \ | 420 | ((c) >= 0 \ |
| @@ -450,7 +450,7 @@ extern int width_by_char_head[256]; | |||
| 450 | #define VALID_LEADING_CODE_P(code) \ | 450 | #define VALID_LEADING_CODE_P(code) \ |
| 451 | (! NILP (CHARSET_TABLE_ENTRY (code))) | 451 | (! NILP (CHARSET_TABLE_ENTRY (code))) |
| 452 | 452 | ||
| 453 | /* Return 1 iff the byte sequence at unibyte string STR (LENGTH bytes) | 453 | /* Return 1 if the byte sequence at unibyte string STR (LENGTH bytes) |
| 454 | is valid as a multibyte form. If valid, by a side effect, BYTES is | 454 | is valid as a multibyte form. If valid, by a side effect, BYTES is |
| 455 | set to the byte length of the multibyte form. */ | 455 | set to the byte length of the multibyte form. */ |
| 456 | 456 | ||
| @@ -471,7 +471,7 @@ extern int width_by_char_head[256]; | |||
| 471 | && VALID_LEADING_CODE_P (str[1])))))))) | 471 | && VALID_LEADING_CODE_P (str[1])))))))) |
| 472 | 472 | ||
| 473 | 473 | ||
| 474 | /* Return 1 iff the byte sequence at multibyte string STR is valid as | 474 | /* Return 1 if the byte sequence at multibyte string STR is valid as |
| 475 | a unibyte form. By a side effect, BYTES is set to the byte length | 475 | a unibyte form. By a side effect, BYTES is set to the byte length |
| 476 | of one character at STR. */ | 476 | of one character at STR. */ |
| 477 | 477 | ||
| @@ -499,7 +499,7 @@ extern int width_by_char_head[256]; | |||
| 499 | c1 = CHAR_FIELD3 (c), \ | 499 | c1 = CHAR_FIELD3 (c), \ |
| 500 | c2 = -1))) | 500 | c2 = -1))) |
| 501 | 501 | ||
| 502 | /* Return 1 iff character C has valid printable glyph. */ | 502 | /* Return 1 if character C has valid printable glyph. */ |
| 503 | #define CHAR_PRINTABLE_P(c) (ASCII_BYTE_P (c) || char_printable_p (c)) | 503 | #define CHAR_PRINTABLE_P(c) (ASCII_BYTE_P (c) || char_printable_p (c)) |
| 504 | 504 | ||
| 505 | /* The charset of the character at STR is stored in CHARSET, and the | 505 | /* The charset of the character at STR is stored in CHARSET, and the |
diff --git a/src/coding.h b/src/coding.h index 9906e66af6c..2efcd4f47e2 100644 --- a/src/coding.h +++ b/src/coding.h | |||
| @@ -263,7 +263,7 @@ enum coding_type | |||
| 263 | eol-type is not consistent | 263 | eol-type is not consistent |
| 264 | through the file. */ | 264 | through the file. */ |
| 265 | 265 | ||
| 266 | /* 1 iff composing. */ | 266 | /* 1 if composing. */ |
| 267 | #define COMPOSING_P(coding) ((int) coding->composing > (int) COMPOSITION_NO) | 267 | #define COMPOSING_P(coding) ((int) coding->composing > (int) COMPOSITION_NO) |
| 268 | 268 | ||
| 269 | #define COMPOSITION_DATA_SIZE 4080 | 269 | #define COMPOSITION_DATA_SIZE 4080 |
| @@ -372,7 +372,7 @@ struct coding_system | |||
| 372 | /* The current status of composition handling. */ | 372 | /* The current status of composition handling. */ |
| 373 | int composing; | 373 | int composing; |
| 374 | 374 | ||
| 375 | /* 1 iff the next character is a composition rule. */ | 375 | /* 1 if the next character is a composition rule. */ |
| 376 | int composition_rule_follows; | 376 | int composition_rule_follows; |
| 377 | 377 | ||
| 378 | /* Information of compositions are stored here on decoding and set | 378 | /* Information of compositions are stored here on decoding and set |
diff --git a/src/composite.h b/src/composite.h index 5dc8dde62e2..ba8f8c84104 100644 --- a/src/composite.h +++ b/src/composite.h | |||
| @@ -56,7 +56,7 @@ enum composition_method { | |||
| 56 | /* Temporary variable used only in the following macros. */ | 56 | /* Temporary variable used only in the following macros. */ |
| 57 | extern Lisp_Object composition_temp; | 57 | extern Lisp_Object composition_temp; |
| 58 | 58 | ||
| 59 | /* Return 1 iff the composition is already registered. */ | 59 | /* Return 1 if the composition is already registered. */ |
| 60 | #define COMPOSITION_REGISTERD_P(prop) INTEGERP (XCAR (prop)) | 60 | #define COMPOSITION_REGISTERD_P(prop) INTEGERP (XCAR (prop)) |
| 61 | 61 | ||
| 62 | /* Return ID number of the already registered composition. */ | 62 | /* Return ID number of the already registered composition. */ |
| @@ -91,7 +91,7 @@ extern Lisp_Object composition_temp; | |||
| 91 | ? COMPOSITION_WITH_ALTCHARS \ | 91 | ? COMPOSITION_WITH_ALTCHARS \ |
| 92 | : COMPOSITION_WITH_RULE_ALTCHARS)))) | 92 | : COMPOSITION_WITH_RULE_ALTCHARS)))) |
| 93 | 93 | ||
| 94 | /* Return 1 iff the composition is valid. It is valid if length of | 94 | /* Return 1 if the composition is valid. It is valid if length of |
| 95 | the composition equals to (END - START). */ | 95 | the composition equals to (END - START). */ |
| 96 | #define COMPOSITION_VALID_P(start, end, prop) \ | 96 | #define COMPOSITION_VALID_P(start, end, prop) \ |
| 97 | (CONSP (prop) \ | 97 | (CONSP (prop) \ |
diff --git a/src/dired.c b/src/dired.c index 22283b66ea0..1fb5387268a 100644 --- a/src/dired.c +++ b/src/dired.c | |||
| @@ -916,7 +916,7 @@ Elements of the attribute list are: | |||
| 916 | 7. Size in bytes. | 916 | 7. Size in bytes. |
| 917 | This is a floating point number if the size is too large for an integer. | 917 | This is a floating point number if the size is too large for an integer. |
| 918 | 8. File modes, as a string of ten letters or dashes as in ls -l. | 918 | 8. File modes, as a string of ten letters or dashes as in ls -l. |
| 919 | 9. t iff file's gid would change if file were deleted and recreated. | 919 | 9. t if file's gid would change if file were deleted and recreated. |
| 920 | 10. inode number. If inode number is larger than the Emacs integer, | 920 | 10. inode number. If inode number is larger than the Emacs integer, |
| 921 | this is a cons cell containing two integers: first the high part, | 921 | this is a cons cell containing two integers: first the high part, |
| 922 | then the low 16 bits. | 922 | then the low 16 bits. |
diff --git a/src/editfns.c b/src/editfns.c index 7bb74958c2c..dac7eb83af2 100644 --- a/src/editfns.c +++ b/src/editfns.c | |||
| @@ -3514,7 +3514,7 @@ usage: (format STRING &rest OBJECTS) */) | |||
| 3514 | precision ::= '.' [0-9]* | 3514 | precision ::= '.' [0-9]* |
| 3515 | 3515 | ||
| 3516 | If a field-width is specified, it specifies to which width | 3516 | If a field-width is specified, it specifies to which width |
| 3517 | the output should be padded with blanks, iff the output | 3517 | the output should be padded with blanks, if the output |
| 3518 | string is shorter than field-width. | 3518 | string is shorter than field-width. |
| 3519 | 3519 | ||
| 3520 | If precision is specified, it specifies the number of | 3520 | If precision is specified, it specifies the number of |
diff --git a/src/eval.c b/src/eval.c index 78316eb1a3c..6ce64bc4d8c 100644 --- a/src/eval.c +++ b/src/eval.c | |||
| @@ -1783,7 +1783,7 @@ signal_error (s, arg) | |||
| 1783 | } | 1783 | } |
| 1784 | 1784 | ||
| 1785 | 1785 | ||
| 1786 | /* Return nonzero iff LIST is a non-nil atom or | 1786 | /* Return nonzero if LIST is a non-nil atom or |
| 1787 | a list containing one of CONDITIONS. */ | 1787 | a list containing one of CONDITIONS. */ |
| 1788 | 1788 | ||
| 1789 | static int | 1789 | static int |
diff --git a/src/fileio.c b/src/fileio.c index 195e76db658..45eb7d29f91 100644 --- a/src/fileio.c +++ b/src/fileio.c | |||
| @@ -5256,7 +5256,7 @@ This does code conversion according to the value of | |||
| 5256 | * if we do writes that don't end with a carriage return. Furthermore | 5256 | * if we do writes that don't end with a carriage return. Furthermore |
| 5257 | * it cannot handle writes of more then 16K. The modified | 5257 | * it cannot handle writes of more then 16K. The modified |
| 5258 | * version of "sys_write" in SYSDEP.C (see comment there) copes with | 5258 | * version of "sys_write" in SYSDEP.C (see comment there) copes with |
| 5259 | * this EXCEPT for the last record (iff it doesn't end with a carriage | 5259 | * this EXCEPT for the last record (if it doesn't end with a carriage |
| 5260 | * return). This implies that if your buffer doesn't end with a carriage | 5260 | * return). This implies that if your buffer doesn't end with a carriage |
| 5261 | * return, you get one free... tough. However it also means that if | 5261 | * return, you get one free... tough. However it also means that if |
| 5262 | * we make two calls to sys_write (a la the following code) you can | 5262 | * we make two calls to sys_write (a la the following code) you can |
diff --git a/src/fontset.c b/src/fontset.c index 97f86faaff9..9056e2da6ec 100644 --- a/src/fontset.c +++ b/src/fontset.c | |||
| @@ -500,7 +500,7 @@ free_face_fontset (f, face) | |||
| 500 | } | 500 | } |
| 501 | 501 | ||
| 502 | 502 | ||
| 503 | /* Return 1 iff FACE is suitable for displaying character C. | 503 | /* Return 1 if FACE is suitable for displaying character C. |
| 504 | Otherwise return 0. Called from the macro FACE_SUITABLE_FOR_CHAR_P | 504 | Otherwise return 0. Called from the macro FACE_SUITABLE_FOR_CHAR_P |
| 505 | when C is not a single byte character.. */ | 505 | when C is not a single byte character.. */ |
| 506 | 506 | ||
diff --git a/src/fontset.h b/src/fontset.h index 5b5c5cbcfaa..c8bd1e36eab 100644 --- a/src/fontset.h +++ b/src/fontset.h | |||
| @@ -66,7 +66,7 @@ struct font_info | |||
| 66 | /* Average width of glyphs in the font. */ | 66 | /* Average width of glyphs in the font. */ |
| 67 | int average_width; | 67 | int average_width; |
| 68 | 68 | ||
| 69 | /* 1 iff `vertical-centering-font-regexp' matches this font name. | 69 | /* 1 if `vertical-centering-font-regexp' matches this font name. |
| 70 | In this case, we render characters at vartical center positions | 70 | In this case, we render characters at vartical center positions |
| 71 | of lines. */ | 71 | of lines. */ |
| 72 | int vertical_centering; | 72 | int vertical_centering; |
diff --git a/src/getloadavg.c b/src/getloadavg.c index f40149a8c47..6d66cbfd8a1 100644 --- a/src/getloadavg.c +++ b/src/getloadavg.c | |||
| @@ -484,7 +484,7 @@ static struct dg_sys_info_load_info load_info; /* what-a-mouthful! */ | |||
| 484 | #if !defined(HAVE_LIBKSTAT) && defined(LOAD_AVE_TYPE) | 484 | #if !defined(HAVE_LIBKSTAT) && defined(LOAD_AVE_TYPE) |
| 485 | /* File descriptor open to /dev/kmem or VMS load ave driver. */ | 485 | /* File descriptor open to /dev/kmem or VMS load ave driver. */ |
| 486 | static int channel; | 486 | static int channel; |
| 487 | /* Nonzero iff channel is valid. */ | 487 | /* Nonzero if channel is valid. */ |
| 488 | static int getloadavg_initialized; | 488 | static int getloadavg_initialized; |
| 489 | /* Offset in kmem to seek to read load average, or 0 means invalid. */ | 489 | /* Offset in kmem to seek to read load average, or 0 means invalid. */ |
| 490 | static long offset; | 490 | static long offset; |
diff --git a/src/indent.c b/src/indent.c index 905cf7559a7..b3c1d0cf81a 100644 --- a/src/indent.c +++ b/src/indent.c | |||
| @@ -116,7 +116,7 @@ character_width (c, dp) | |||
| 116 | return 0; | 116 | return 0; |
| 117 | } | 117 | } |
| 118 | 118 | ||
| 119 | /* Return true iff the display table DISPTAB specifies the same widths | 119 | /* Return true if the display table DISPTAB specifies the same widths |
| 120 | for characters as WIDTHTAB. We use this to decide when to | 120 | for characters as WIDTHTAB. We use this to decide when to |
| 121 | invalidate the buffer's width_run_cache. */ | 121 | invalidate the buffer's width_run_cache. */ |
| 122 | 122 | ||
diff --git a/src/indent.h b/src/indent.h index 2d3c158b069..2e873769603 100644 --- a/src/indent.h +++ b/src/indent.h | |||
| @@ -61,7 +61,7 @@ extern int last_known_column_point; | |||
| 61 | 61 | ||
| 62 | /* Functions for dealing with the column cache. */ | 62 | /* Functions for dealing with the column cache. */ |
| 63 | 63 | ||
| 64 | /* Return true iff the display table DISPTAB specifies the same widths | 64 | /* Return true if the display table DISPTAB specifies the same widths |
| 65 | for characters as WIDTHTAB. We use this to decide when to | 65 | for characters as WIDTHTAB. We use this to decide when to |
| 66 | invalidate the buffer's column_cache. */ | 66 | invalidate the buffer's column_cache. */ |
| 67 | int disptab_matches_widthtab P_ ((struct Lisp_Char_Table *disptab, | 67 | int disptab_matches_widthtab P_ ((struct Lisp_Char_Table *disptab, |
diff --git a/src/intervals.c b/src/intervals.c index 89f99a052b9..a695976b8b7 100644 --- a/src/intervals.c +++ b/src/intervals.c | |||
| @@ -2200,7 +2200,7 @@ set_point_both (buffer, charpos, bytepos) | |||
| 2200 | 2200 | ||
| 2201 | temp_set_point_both (buffer, charpos, bytepos); | 2201 | temp_set_point_both (buffer, charpos, bytepos); |
| 2202 | 2202 | ||
| 2203 | /* We run point-left and point-entered hooks here, iff the | 2203 | /* We run point-left and point-entered hooks here, if the |
| 2204 | two intervals are not equivalent. These hooks take | 2204 | two intervals are not equivalent. These hooks take |
| 2205 | (old_point, new_point) as arguments. */ | 2205 | (old_point, new_point) as arguments. */ |
| 2206 | if (NILP (Vinhibit_point_motion_hooks) | 2206 | if (NILP (Vinhibit_point_motion_hooks) |
diff --git a/src/keyboard.c b/src/keyboard.c index b096424a615..c542d291b46 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -500,7 +500,7 @@ static struct input_event * volatile kbd_store_ptr; | |||
| 500 | /* The above pair of variables forms a "queue empty" flag. When we | 500 | /* The above pair of variables forms a "queue empty" flag. When we |
| 501 | enqueue a non-hook event, we increment kbd_store_ptr. When we | 501 | enqueue a non-hook event, we increment kbd_store_ptr. When we |
| 502 | dequeue a non-hook event, we increment kbd_fetch_ptr. We say that | 502 | dequeue a non-hook event, we increment kbd_fetch_ptr. We say that |
| 503 | there is input available iff the two pointers are not equal. | 503 | there is input available if the two pointers are not equal. |
| 504 | 504 | ||
| 505 | Why not just have a flag set and cleared by the enqueuing and | 505 | Why not just have a flag set and cleared by the enqueuing and |
| 506 | dequeuing functions? Such a flag could be screwed up by interrupts | 506 | dequeuing functions? Such a flag could be screwed up by interrupts |
| @@ -3590,7 +3590,7 @@ restore_getcjmp (temp) | |||
| 3590 | kbd_buffer_store_event places events in kbd_buffer, and | 3590 | kbd_buffer_store_event places events in kbd_buffer, and |
| 3591 | kbd_buffer_get_event retrieves them. */ | 3591 | kbd_buffer_get_event retrieves them. */ |
| 3592 | 3592 | ||
| 3593 | /* Return true iff there are any events in the queue that read-char | 3593 | /* Return true if there are any events in the queue that read-char |
| 3594 | would return. If this returns false, a read-char would block. */ | 3594 | would return. If this returns false, a read-char would block. */ |
| 3595 | static int | 3595 | static int |
| 3596 | readable_events (flags) | 3596 | readable_events (flags) |
diff --git a/src/keyboard.h b/src/keyboard.h index e24f9a133ae..15e55ad4e67 100644 --- a/src/keyboard.h +++ b/src/keyboard.h | |||
| @@ -240,7 +240,7 @@ extern Lisp_Object item_properties; | |||
| 240 | 240 | ||
| 241 | /* Macros for dealing with lispy events. */ | 241 | /* Macros for dealing with lispy events. */ |
| 242 | 242 | ||
| 243 | /* True iff EVENT has data fields describing it (i.e. a mouse click). */ | 243 | /* True if EVENT has data fields describing it (i.e. a mouse click). */ |
| 244 | #define EVENT_HAS_PARAMETERS(event) (CONSP (event)) | 244 | #define EVENT_HAS_PARAMETERS(event) (CONSP (event)) |
| 245 | 245 | ||
| 246 | /* Extract the head from an event. | 246 | /* Extract the head from an event. |
diff --git a/src/keymap.c b/src/keymap.c index c9817199a4f..2c760050c1d 100644 --- a/src/keymap.c +++ b/src/keymap.c | |||
| @@ -4074,7 +4074,7 @@ don't alter it yourself. */); | |||
| 4074 | DEFVAR_LISP ("minor-mode-map-alist", &Vminor_mode_map_alist, | 4074 | DEFVAR_LISP ("minor-mode-map-alist", &Vminor_mode_map_alist, |
| 4075 | doc: /* Alist of keymaps to use for minor modes. | 4075 | doc: /* Alist of keymaps to use for minor modes. |
| 4076 | Each element looks like (VARIABLE . KEYMAP); KEYMAP is used to read | 4076 | Each element looks like (VARIABLE . KEYMAP); KEYMAP is used to read |
| 4077 | key sequences and look up bindings iff VARIABLE's value is non-nil. | 4077 | key sequences and look up bindings if VARIABLE's value is non-nil. |
| 4078 | If two active keymaps bind the same key, the keymap appearing earlier | 4078 | If two active keymaps bind the same key, the keymap appearing earlier |
| 4079 | in the list takes precedence. */); | 4079 | in the list takes precedence. */); |
| 4080 | Vminor_mode_map_alist = Qnil; | 4080 | Vminor_mode_map_alist = Qnil; |
diff --git a/src/lisp.h b/src/lisp.h index d86fdc0e915..c5d9724e96c 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -1444,7 +1444,7 @@ typedef unsigned char UCHAR; | |||
| 1444 | #define GLYPH_CHAR(f, g) (FAST_GLYPH_CHAR (g)) | 1444 | #define GLYPH_CHAR(f, g) (FAST_GLYPH_CHAR (g)) |
| 1445 | #define GLYPH_FACE(f, g) (FAST_GLYPH_FACE (g)) | 1445 | #define GLYPH_FACE(f, g) (FAST_GLYPH_FACE (g)) |
| 1446 | 1446 | ||
| 1447 | /* Return 1 iff GLYPH contains valid character code. */ | 1447 | /* Return 1 if GLYPH contains valid character code. */ |
| 1448 | #define GLYPH_CHAR_VALID_P(glyph) CHAR_VALID_P (FAST_GLYPH_CHAR (glyph), 1) | 1448 | #define GLYPH_CHAR_VALID_P(glyph) CHAR_VALID_P (FAST_GLYPH_CHAR (glyph), 1) |
| 1449 | 1449 | ||
| 1450 | /* The ID of the mode line highlighting face. */ | 1450 | /* The ID of the mode line highlighting face. */ |
| @@ -1591,7 +1591,7 @@ typedef unsigned char UCHAR; | |||
| 1591 | "dead", which is what we want; this is an argument-checking macro, and | 1591 | "dead", which is what we want; this is an argument-checking macro, and |
| 1592 | the user should never get access to interior windows. | 1592 | the user should never get access to interior windows. |
| 1593 | 1593 | ||
| 1594 | A window of any sort, leaf or interior, is dead iff the buffer, | 1594 | A window of any sort, leaf or interior, is dead if the buffer, |
| 1595 | vchild, and hchild members are all nil. */ | 1595 | vchild, and hchild members are all nil. */ |
| 1596 | 1596 | ||
| 1597 | #define CHECK_LIVE_WINDOW(x) \ | 1597 | #define CHECK_LIVE_WINDOW(x) \ |
diff --git a/src/lread.c b/src/lread.c index 20587c6759e..282bf1d6b07 100644 --- a/src/lread.c +++ b/src/lread.c | |||
| @@ -93,7 +93,7 @@ Lisp_Object Qfile_truename, Qdo_after_load_evaluation; /* ACM 2006/5/16 */ | |||
| 93 | extern Lisp_Object Qevent_symbol_element_mask; | 93 | extern Lisp_Object Qevent_symbol_element_mask; |
| 94 | extern Lisp_Object Qfile_exists_p; | 94 | extern Lisp_Object Qfile_exists_p; |
| 95 | 95 | ||
| 96 | /* non-zero iff inside `load' */ | 96 | /* non-zero if inside `load' */ |
| 97 | int load_in_progress; | 97 | int load_in_progress; |
| 98 | 98 | ||
| 99 | /* Directory in which the sources were found. */ | 99 | /* Directory in which the sources were found. */ |
| @@ -1126,7 +1126,7 @@ in which case file-name-handlers are ignored. */) | |||
| 1126 | On success, returns a file descriptor. On failure, returns -1. | 1126 | On success, returns a file descriptor. On failure, returns -1. |
| 1127 | 1127 | ||
| 1128 | SUFFIXES is a list of strings containing possible suffixes. | 1128 | SUFFIXES is a list of strings containing possible suffixes. |
| 1129 | The empty suffix is automatically added iff the list is empty. | 1129 | The empty suffix is automatically added if the list is empty. |
| 1130 | 1130 | ||
| 1131 | PREDICATE non-nil means don't open the files, | 1131 | PREDICATE non-nil means don't open the files, |
| 1132 | just look for one that satisfies the predicate. In this case, | 1132 | just look for one that satisfies the predicate. In this case, |
| @@ -4077,7 +4077,7 @@ customize `jka-compr-load-suffixes' rather than the present variable. */); | |||
| 4077 | Vload_file_rep_suffixes = Fcons (empty_unibyte_string, Qnil); | 4077 | Vload_file_rep_suffixes = Fcons (empty_unibyte_string, Qnil); |
| 4078 | 4078 | ||
| 4079 | DEFVAR_BOOL ("load-in-progress", &load_in_progress, | 4079 | DEFVAR_BOOL ("load-in-progress", &load_in_progress, |
| 4080 | doc: /* Non-nil iff inside of `load'. */); | 4080 | doc: /* Non-nil if inside of `load'. */); |
| 4081 | 4081 | ||
| 4082 | DEFVAR_LISP ("after-load-alist", &Vafter_load_alist, | 4082 | DEFVAR_LISP ("after-load-alist", &Vafter_load_alist, |
| 4083 | doc: /* An alist of expressions to be evalled when particular files are loaded. | 4083 | doc: /* An alist of expressions to be evalled when particular files are loaded. |
diff --git a/src/m/7300.h b/src/m/7300.h index b590593abc8..6e439a829cc 100644 --- a/src/m/7300.h +++ b/src/m/7300.h | |||
| @@ -30,7 +30,7 @@ Boston, MA 02110-1301, USA. */ | |||
| 30 | /* # define SHORTNAMES */ | 30 | /* # define SHORTNAMES */ |
| 31 | 31 | ||
| 32 | 32 | ||
| 33 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 33 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 34 | is the most significant byte. */ | 34 | is the most significant byte. */ |
| 35 | 35 | ||
| 36 | #define WORDS_BIG_ENDIAN | 36 | #define WORDS_BIG_ENDIAN |
diff --git a/src/m/acorn.h b/src/m/acorn.h index 7fa5991e28b..148d46454ab 100644 --- a/src/m/acorn.h +++ b/src/m/acorn.h | |||
| @@ -21,7 +21,7 @@ Boston, MA 02110-1301, USA. */ | |||
| 21 | 21 | ||
| 22 | 22 | ||
| 23 | 23 | ||
| 24 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 24 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 25 | is the most significant byte. */ | 25 | is the most significant byte. */ |
| 26 | 26 | ||
| 27 | #undef WORDS_BIG_ENDIAN | 27 | #undef WORDS_BIG_ENDIAN |
diff --git a/src/m/alliant-2800.h b/src/m/alliant-2800.h index 3d65f9d1f12..405267afb2b 100644 --- a/src/m/alliant-2800.h +++ b/src/m/alliant-2800.h | |||
| @@ -24,7 +24,7 @@ Boston, MA 02110-1301, USA. */ | |||
| 24 | operating system this machine is likely to run. | 24 | operating system this machine is likely to run. |
| 25 | USUAL-OPSYS="bsd4-3" */ | 25 | USUAL-OPSYS="bsd4-3" */ |
| 26 | 26 | ||
| 27 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 27 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 28 | is the most significant byte. */ | 28 | is the most significant byte. */ |
| 29 | 29 | ||
| 30 | #undef WORDS_BIG_ENDIAN | 30 | #undef WORDS_BIG_ENDIAN |
diff --git a/src/m/alliant.h b/src/m/alliant.h index b871d4a2385..7cad4bfb0c1 100644 --- a/src/m/alliant.h +++ b/src/m/alliant.h | |||
| @@ -26,7 +26,7 @@ Boston, MA 02110-1301, USA. */ | |||
| 26 | operating system this machine is likely to run. | 26 | operating system this machine is likely to run. |
| 27 | USUAL-OPSYS="bsd4-2" */ | 27 | USUAL-OPSYS="bsd4-2" */ |
| 28 | 28 | ||
| 29 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 29 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 30 | is the most significant byte. */ | 30 | is the most significant byte. */ |
| 31 | 31 | ||
| 32 | #define WORDS_BIG_ENDIAN | 32 | #define WORDS_BIG_ENDIAN |
diff --git a/src/m/alpha.h b/src/m/alpha.h index 84e74d581d1..5e46a05ab68 100644 --- a/src/m/alpha.h +++ b/src/m/alpha.h | |||
| @@ -35,7 +35,7 @@ NOTE-END | |||
| 35 | on OSF 4/5 -- fx. */ | 35 | on OSF 4/5 -- fx. */ |
| 36 | #endif | 36 | #endif |
| 37 | 37 | ||
| 38 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 38 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 39 | is the most significant byte. */ | 39 | is the most significant byte. */ |
| 40 | 40 | ||
| 41 | #undef WORDS_BIG_ENDIAN | 41 | #undef WORDS_BIG_ENDIAN |
diff --git a/src/m/altos.h b/src/m/altos.h index 8a1cb138345..0f4bb9b810f 100644 --- a/src/m/altos.h +++ b/src/m/altos.h | |||
| @@ -24,7 +24,7 @@ Boston, MA 02110-1301, USA. */ | |||
| 24 | operating system this machine is likely to run. | 24 | operating system this machine is likely to run. |
| 25 | USUAL-OPSYS="usg5-2" */ | 25 | USUAL-OPSYS="usg5-2" */ |
| 26 | 26 | ||
| 27 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 27 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 28 | is the most significant byte. */ | 28 | is the most significant byte. */ |
| 29 | 29 | ||
| 30 | #define WORDS_BIG_ENDIAN | 30 | #define WORDS_BIG_ENDIAN |
diff --git a/src/m/amdahl.h b/src/m/amdahl.h index 3d9ee17e91f..486e2925a55 100644 --- a/src/m/amdahl.h +++ b/src/m/amdahl.h | |||
| @@ -31,7 +31,7 @@ This file works with the Amdahl uts native C compiler. The 5.2u370 | |||
| 31 | compiler is so brain damaged that it is not even worth trying to use it. | 31 | compiler is so brain damaged that it is not even worth trying to use it. |
| 32 | */ | 32 | */ |
| 33 | 33 | ||
| 34 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 34 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 35 | is the most significant byte. */ | 35 | is the most significant byte. */ |
| 36 | 36 | ||
| 37 | #define WORDS_BIG_ENDIAN | 37 | #define WORDS_BIG_ENDIAN |
diff --git a/src/m/amdx86-64.h b/src/m/amdx86-64.h index fbd53a955a2..681be8b0647 100644 --- a/src/m/amdx86-64.h +++ b/src/m/amdx86-64.h | |||
| @@ -26,7 +26,7 @@ Boston, MA 02110-1301, USA. */ | |||
| 26 | #define BITS_PER_LONG 64 | 26 | #define BITS_PER_LONG 64 |
| 27 | #define BITS_PER_EMACS_INT 64 | 27 | #define BITS_PER_EMACS_INT 64 |
| 28 | 28 | ||
| 29 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 29 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 30 | is the most significant byte. */ | 30 | is the most significant byte. */ |
| 31 | 31 | ||
| 32 | #undef WORDS_BIG_ENDIAN | 32 | #undef WORDS_BIG_ENDIAN |
diff --git a/src/m/apollo.h b/src/m/apollo.h index b769c24c294..2eac3098db9 100644 --- a/src/m/apollo.h +++ b/src/m/apollo.h | |||
| @@ -24,7 +24,7 @@ Boston, MA 02110-1301, USA. */ | |||
| 24 | operating system this machine is likely to run. | 24 | operating system this machine is likely to run. |
| 25 | USUAL-OPSYS="bsd4-3" */ | 25 | USUAL-OPSYS="bsd4-3" */ |
| 26 | 26 | ||
| 27 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 27 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 28 | is the most significant byte. */ | 28 | is the most significant byte. */ |
| 29 | 29 | ||
| 30 | #define WORDS_BIG_ENDIAN | 30 | #define WORDS_BIG_ENDIAN |
diff --git a/src/m/arm.h b/src/m/arm.h index b1df83f9b70..697179723f7 100644 --- a/src/m/arm.h +++ b/src/m/arm.h | |||
| @@ -21,7 +21,7 @@ Boston, MA 02110-1301, USA. */ | |||
| 21 | 21 | ||
| 22 | 22 | ||
| 23 | 23 | ||
| 24 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 24 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 25 | is the most significant byte. */ | 25 | is the most significant byte. */ |
| 26 | 26 | ||
| 27 | #undef WORDS_BIG_ENDIAN | 27 | #undef WORDS_BIG_ENDIAN |
diff --git a/src/m/att3b.h b/src/m/att3b.h index 3344aabc2a9..8e9a589bcd2 100644 --- a/src/m/att3b.h +++ b/src/m/att3b.h | |||
| @@ -26,7 +26,7 @@ Boston, MA 02110-1301, USA. */ | |||
| 26 | operating system this machine is likely to run. | 26 | operating system this machine is likely to run. |
| 27 | USUAL-OPSYS="usg5-2-2" */ | 27 | USUAL-OPSYS="usg5-2-2" */ |
| 28 | 28 | ||
| 29 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 29 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 30 | is the most significant byte. */ | 30 | is the most significant byte. */ |
| 31 | 31 | ||
| 32 | #define WORDS_BIG_ENDIAN | 32 | #define WORDS_BIG_ENDIAN |
diff --git a/src/m/aviion.h b/src/m/aviion.h index 7f3f7f253d5..832feb79a00 100644 --- a/src/m/aviion.h +++ b/src/m/aviion.h | |||
| @@ -20,7 +20,7 @@ the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
| 20 | Boston, MA 02110-1301, USA. */ | 20 | Boston, MA 02110-1301, USA. */ |
| 21 | 21 | ||
| 22 | 22 | ||
| 23 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 23 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 24 | is the most significant byte. */ | 24 | is the most significant byte. */ |
| 25 | 25 | ||
| 26 | #define WORDS_BIG_ENDIAN | 26 | #define WORDS_BIG_ENDIAN |
diff --git a/src/m/celerity.h b/src/m/celerity.h index 76f1e1729b3..556c2765883 100644 --- a/src/m/celerity.h +++ b/src/m/celerity.h | |||
| @@ -24,7 +24,7 @@ Boston, MA 02110-1301, USA. */ | |||
| 24 | operating system this machine is likely to run. | 24 | operating system this machine is likely to run. |
| 25 | USUAL-OPSYS="bsd4-2" */ | 25 | USUAL-OPSYS="bsd4-2" */ |
| 26 | 26 | ||
| 27 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 27 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 28 | is the most significant byte. */ | 28 | is the most significant byte. */ |
| 29 | 29 | ||
| 30 | #define WORDS_BIG_ENDIAN | 30 | #define WORDS_BIG_ENDIAN |
diff --git a/src/m/clipper.h b/src/m/clipper.h index de99ba97eb5..c0006f48eab 100644 --- a/src/m/clipper.h +++ b/src/m/clipper.h | |||
| @@ -20,7 +20,7 @@ the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
| 20 | Boston, MA 02110-1301, USA. */ | 20 | Boston, MA 02110-1301, USA. */ |
| 21 | 21 | ||
| 22 | 22 | ||
| 23 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 23 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 24 | is the most significant byte. */ | 24 | is the most significant byte. */ |
| 25 | 25 | ||
| 26 | #undef WORDS_BIG_ENDIAN | 26 | #undef WORDS_BIG_ENDIAN |
diff --git a/src/m/cnvrgnt.h b/src/m/cnvrgnt.h index f64fc86b08b..22478a273b6 100644 --- a/src/m/cnvrgnt.h +++ b/src/m/cnvrgnt.h | |||
| @@ -20,7 +20,7 @@ the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
| 20 | Boston, MA 02110-1301, USA. */ | 20 | Boston, MA 02110-1301, USA. */ |
| 21 | 21 | ||
| 22 | 22 | ||
| 23 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 23 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 24 | is the most significant byte. */ | 24 | is the most significant byte. */ |
| 25 | 25 | ||
| 26 | #define WORDS_BIG_ENDIAN | 26 | #define WORDS_BIG_ENDIAN |
diff --git a/src/m/convex.h b/src/m/convex.h index 7f90d22117c..c8f447cf2fa 100644 --- a/src/m/convex.h +++ b/src/m/convex.h | |||
| @@ -24,7 +24,7 @@ Boston, MA 02110-1301, USA. */ | |||
| 24 | operating system this machine is likely to run. | 24 | operating system this machine is likely to run. |
| 25 | USUAL-OPSYS="bsd4-3" */ | 25 | USUAL-OPSYS="bsd4-3" */ |
| 26 | 26 | ||
| 27 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 27 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 28 | is the most significant byte. */ | 28 | is the most significant byte. */ |
| 29 | 29 | ||
| 30 | #define WORDS_BIG_ENDIAN | 30 | #define WORDS_BIG_ENDIAN |
diff --git a/src/m/cydra5.h b/src/m/cydra5.h index 2361fb4b589..4c95f226371 100644 --- a/src/m/cydra5.h +++ b/src/m/cydra5.h | |||
| @@ -24,7 +24,7 @@ Boston, MA 02110-1301, USA. */ | |||
| 24 | operating system this machine is likely to run. | 24 | operating system this machine is likely to run. |
| 25 | USUAL-OPSYS="usg5-3" */ | 25 | USUAL-OPSYS="usg5-3" */ |
| 26 | 26 | ||
| 27 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 27 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 28 | is the most significant byte. */ | 28 | is the most significant byte. */ |
| 29 | 29 | ||
| 30 | #define WORDS_BIG_ENDIAN | 30 | #define WORDS_BIG_ENDIAN |
diff --git a/src/m/delta88k.h b/src/m/delta88k.h index c767e1db1ca..b5d0c8f190b 100644 --- a/src/m/delta88k.h +++ b/src/m/delta88k.h | |||
| @@ -24,7 +24,7 @@ Boston, MA 02110-1301, USA. */ | |||
| 24 | operating system this machine is likely to run. | 24 | operating system this machine is likely to run. |
| 25 | USUAL-OPSYS="usg5-3" */ | 25 | USUAL-OPSYS="usg5-3" */ |
| 26 | 26 | ||
| 27 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 27 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 28 | is the most significant byte. */ | 28 | is the most significant byte. */ |
| 29 | 29 | ||
| 30 | #define WORDS_BIG_ENDIAN | 30 | #define WORDS_BIG_ENDIAN |
diff --git a/src/m/dpx2.h b/src/m/dpx2.h index 1c1d146a08a..b39ef93ee34 100644 --- a/src/m/dpx2.h +++ b/src/m/dpx2.h | |||
| @@ -32,7 +32,7 @@ Boston, MA 02110-1301, USA. */ | |||
| 32 | /* #define ncl_el /* DPX/2 210,220 etc */ | 32 | /* #define ncl_el /* DPX/2 210,220 etc */ |
| 33 | /* #define ncl_mr 1 /* DPX/2 320,340 (and 360,380 ?) */ | 33 | /* #define ncl_mr 1 /* DPX/2 320,340 (and 360,380 ?) */ |
| 34 | 34 | ||
| 35 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 35 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 36 | is the most significant byte. */ | 36 | is the most significant byte. */ |
| 37 | 37 | ||
| 38 | #define WORDS_BIG_ENDIAN | 38 | #define WORDS_BIG_ENDIAN |
diff --git a/src/m/dual.h b/src/m/dual.h index 4fda7a8a96c..d287f9502d2 100644 --- a/src/m/dual.h +++ b/src/m/dual.h | |||
| @@ -35,7 +35,7 @@ Dual running Uniplus (-machine=dual -opsystem=unipl5-2) | |||
| 35 | NOTE-END */ | 35 | NOTE-END */ |
| 36 | 36 | ||
| 37 | 37 | ||
| 38 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 38 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 39 | is the most significant byte. */ | 39 | is the most significant byte. */ |
| 40 | 40 | ||
| 41 | #define WORDS_BIG_ENDIAN | 41 | #define WORDS_BIG_ENDIAN |
diff --git a/src/m/elxsi.h b/src/m/elxsi.h index 81689e66e52..07a00bbf714 100644 --- a/src/m/elxsi.h +++ b/src/m/elxsi.h | |||
| @@ -27,7 +27,7 @@ Boston, MA 02110-1301, USA. */ | |||
| 27 | /* This file was modified by Matt Crawford <matt@tank.uchicago.edu> | 27 | /* This file was modified by Matt Crawford <matt@tank.uchicago.edu> |
| 28 | to work under Elxsi's 12.0 release of BSD unix. */ | 28 | to work under Elxsi's 12.0 release of BSD unix. */ |
| 29 | 29 | ||
| 30 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 30 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 31 | is the most significant byte. */ | 31 | is the most significant byte. */ |
| 32 | 32 | ||
| 33 | #undef WORDS_BIG_ENDIAN | 33 | #undef WORDS_BIG_ENDIAN |
diff --git a/src/m/gould.h b/src/m/gould.h index c31f50249e7..cd16e09b785 100644 --- a/src/m/gould.h +++ b/src/m/gould.h | |||
| @@ -49,7 +49,7 @@ Gould Power Node (-machine=gould -opsystem=bsd4-2 or bsd4-3) | |||
| 49 | A site running a pre-release of 2.1 should #define RELEASE2_1 in config.h. | 49 | A site running a pre-release of 2.1 should #define RELEASE2_1 in config.h. |
| 50 | NOTE-END */ | 50 | NOTE-END */ |
| 51 | 51 | ||
| 52 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 52 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 53 | is the most significant byte. */ | 53 | is the most significant byte. */ |
| 54 | 54 | ||
| 55 | #define WORDS_BIG_ENDIAN | 55 | #define WORDS_BIG_ENDIAN |
diff --git a/src/m/hp800.h b/src/m/hp800.h index d54690104b5..83465052478 100644 --- a/src/m/hp800.h +++ b/src/m/hp800.h | |||
| @@ -24,7 +24,7 @@ Boston, MA 02110-1301, USA. */ | |||
| 24 | operating system this machine is likely to run. | 24 | operating system this machine is likely to run. |
| 25 | USUAL-OPSYS="hpux" */ | 25 | USUAL-OPSYS="hpux" */ |
| 26 | 26 | ||
| 27 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 27 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 28 | is the most significant byte. */ | 28 | is the most significant byte. */ |
| 29 | 29 | ||
| 30 | #define WORDS_BIG_ENDIAN | 30 | #define WORDS_BIG_ENDIAN |
diff --git a/src/m/hp9000s300.h b/src/m/hp9000s300.h index 3718bb3f3ae..9a27065f866 100644 --- a/src/m/hp9000s300.h +++ b/src/m/hp9000s300.h | |||
| @@ -59,7 +59,7 @@ NOTE-END */ | |||
| 59 | 59 | ||
| 60 | /* #define HPUX_5 */ | 60 | /* #define HPUX_5 */ |
| 61 | 61 | ||
| 62 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 62 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 63 | is the most significant byte. */ | 63 | is the most significant byte. */ |
| 64 | 64 | ||
| 65 | #define WORDS_BIG_ENDIAN | 65 | #define WORDS_BIG_ENDIAN |
diff --git a/src/m/i860.h b/src/m/i860.h index 1255f2f1576..6d79c5c8d38 100644 --- a/src/m/i860.h +++ b/src/m/i860.h | |||
| @@ -24,7 +24,7 @@ Boston, MA 02110-1301, USA. */ | |||
| 24 | operating system this machine is likely to run. | 24 | operating system this machine is likely to run. |
| 25 | USUAL-OPSYS="<name of system .h file here, without the s- or .h>" */ | 25 | USUAL-OPSYS="<name of system .h file here, without the s- or .h>" */ |
| 26 | 26 | ||
| 27 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 27 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 28 | is the most significant byte. */ | 28 | is the most significant byte. */ |
| 29 | 29 | ||
| 30 | #undef WORDS_BIG_ENDIAN | 30 | #undef WORDS_BIG_ENDIAN |
diff --git a/src/m/ia64.h b/src/m/ia64.h index b6fea6b8fd7..8f7fed8d69e 100644 --- a/src/m/ia64.h +++ b/src/m/ia64.h | |||
| @@ -23,7 +23,7 @@ Boston, MA 02110-1301, USA. */ | |||
| 23 | #define BITS_PER_LONG 64 | 23 | #define BITS_PER_LONG 64 |
| 24 | #define BITS_PER_EMACS_INT 64 | 24 | #define BITS_PER_EMACS_INT 64 |
| 25 | 25 | ||
| 26 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 26 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 27 | is the most significant byte. */ | 27 | is the most significant byte. */ |
| 28 | 28 | ||
| 29 | #undef WORDS_BIG_ENDIAN | 29 | #undef WORDS_BIG_ENDIAN |
diff --git a/src/m/ibm370aix.h b/src/m/ibm370aix.h index f632a30780b..0195ec141ab 100644 --- a/src/m/ibm370aix.h +++ b/src/m/ibm370aix.h | |||
| @@ -30,7 +30,7 @@ Boston, MA 02110-1301, USA. */ | |||
| 30 | #undef INTEL386 | 30 | #undef INTEL386 |
| 31 | #undef aix386 | 31 | #undef aix386 |
| 32 | 32 | ||
| 33 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 33 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 34 | is the most significant byte. */ | 34 | is the most significant byte. */ |
| 35 | 35 | ||
| 36 | #define WORDS_BIG_ENDIAN | 36 | #define WORDS_BIG_ENDIAN |
diff --git a/src/m/ibmps2-aix.h b/src/m/ibmps2-aix.h index 8882052b006..8c975b81bb9 100644 --- a/src/m/ibmps2-aix.h +++ b/src/m/ibmps2-aix.h | |||
| @@ -30,7 +30,7 @@ NOTE-START | |||
| 30 | work with certain new X window managers, and may be suboptimal. | 30 | work with certain new X window managers, and may be suboptimal. |
| 31 | NOTE-END */ | 31 | NOTE-END */ |
| 32 | 32 | ||
| 33 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 33 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 34 | is the most significant byte. */ | 34 | is the most significant byte. */ |
| 35 | 35 | ||
| 36 | #undef WORDS_BIG_ENDIAN | 36 | #undef WORDS_BIG_ENDIAN |
diff --git a/src/m/ibmrs6000.h b/src/m/ibmrs6000.h index 2a298e7f760..d542c07ad0a 100644 --- a/src/m/ibmrs6000.h +++ b/src/m/ibmrs6000.h | |||
| @@ -24,7 +24,7 @@ Boston, MA 02110-1301, USA. */ | |||
| 24 | operating system this machine is likely to run. | 24 | operating system this machine is likely to run. |
| 25 | USUAL-OPSYS="aix3-1" */ | 25 | USUAL-OPSYS="aix3-1" */ |
| 26 | 26 | ||
| 27 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 27 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 28 | is the most significant byte. */ | 28 | is the most significant byte. */ |
| 29 | 29 | ||
| 30 | #ifdef USG5_4 | 30 | #ifdef USG5_4 |
diff --git a/src/m/ibmrt-aix.h b/src/m/ibmrt-aix.h index d24e99fe6d6..57a9dbc4df1 100644 --- a/src/m/ibmrt-aix.h +++ b/src/m/ibmrt-aix.h | |||
| @@ -24,7 +24,7 @@ Boston, MA 02110-1301, USA. */ | |||
| 24 | operating system this machine is likely to run. | 24 | operating system this machine is likely to run. |
| 25 | USUAL-OPSYS="usg5-2-2" */ | 25 | USUAL-OPSYS="usg5-2-2" */ |
| 26 | 26 | ||
| 27 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 27 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 28 | is the most significant byte. */ | 28 | is the most significant byte. */ |
| 29 | 29 | ||
| 30 | #define WORDS_BIG_ENDIAN | 30 | #define WORDS_BIG_ENDIAN |
diff --git a/src/m/ibmrt.h b/src/m/ibmrt.h index 55cbfd88371..ca32db94518 100644 --- a/src/m/ibmrt.h +++ b/src/m/ibmrt.h | |||
| @@ -24,7 +24,7 @@ Boston, MA 02110-1301, USA. */ | |||
| 24 | operating system this machine is likely to run. | 24 | operating system this machine is likely to run. |
| 25 | USUAL-OPSYS="bsd4-2" */ | 25 | USUAL-OPSYS="bsd4-2" */ |
| 26 | 26 | ||
| 27 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 27 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 28 | is the most significant byte. */ | 28 | is the most significant byte. */ |
| 29 | 29 | ||
| 30 | #define WORDS_BIG_ENDIAN | 30 | #define WORDS_BIG_ENDIAN |
diff --git a/src/m/ibms390.h b/src/m/ibms390.h index aece0f7599e..1c7165e04c0 100644 --- a/src/m/ibms390.h +++ b/src/m/ibms390.h | |||
| @@ -24,7 +24,7 @@ Boston, MA 02110-1301, USA. */ | |||
| 24 | operating system this machine is likely to run. | 24 | operating system this machine is likely to run. |
| 25 | USUAL-OPSYS="<name of system .h file here, without the s- or .h>" */ | 25 | USUAL-OPSYS="<name of system .h file here, without the s- or .h>" */ |
| 26 | 26 | ||
| 27 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 27 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 28 | is the most significant byte. */ | 28 | is the most significant byte. */ |
| 29 | 29 | ||
| 30 | #define WORDS_BIG_ENDIAN | 30 | #define WORDS_BIG_ENDIAN |
diff --git a/src/m/ibms390x.h b/src/m/ibms390x.h index fb1f210c634..64ede365d0c 100644 --- a/src/m/ibms390x.h +++ b/src/m/ibms390x.h | |||
| @@ -36,7 +36,7 @@ NOTE-END */ | |||
| 36 | #define BITS_PER_LONG 64 | 36 | #define BITS_PER_LONG 64 |
| 37 | #define BITS_PER_EMACS_INT 64 | 37 | #define BITS_PER_EMACS_INT 64 |
| 38 | 38 | ||
| 39 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 39 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 40 | is the most significant byte. */ | 40 | is the most significant byte. */ |
| 41 | 41 | ||
| 42 | #define WORDS_BIG_ENDIAN | 42 | #define WORDS_BIG_ENDIAN |
diff --git a/src/m/intel386.h b/src/m/intel386.h index 7c6c2106d17..22205ed762c 100644 --- a/src/m/intel386.h +++ b/src/m/intel386.h | |||
| @@ -50,7 +50,7 @@ Prime EXL (-machine=intel386 -opsystem=usg5-3) | |||
| 50 | Minor changes merged in 19.1. | 50 | Minor changes merged in 19.1. |
| 51 | NOTE-END */ | 51 | NOTE-END */ |
| 52 | 52 | ||
| 53 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 53 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 54 | is the most significant byte. */ | 54 | is the most significant byte. */ |
| 55 | 55 | ||
| 56 | #undef WORDS_BIG_ENDIAN | 56 | #undef WORDS_BIG_ENDIAN |
diff --git a/src/m/iris4d.h b/src/m/iris4d.h index d918c25aede..4c15131e595 100644 --- a/src/m/iris4d.h +++ b/src/m/iris4d.h | |||
| @@ -20,7 +20,7 @@ the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
| 20 | Boston, MA 02110-1301, USA. */ | 20 | Boston, MA 02110-1301, USA. */ |
| 21 | 21 | ||
| 22 | 22 | ||
| 23 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 23 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 24 | is the most significant byte. */ | 24 | is the most significant byte. */ |
| 25 | 25 | ||
| 26 | #define WORDS_BIG_ENDIAN | 26 | #define WORDS_BIG_ENDIAN |
diff --git a/src/m/irist.h b/src/m/irist.h index 0b33bd964aa..c0d55f96d0f 100644 --- a/src/m/irist.h +++ b/src/m/irist.h | |||
| @@ -58,7 +58,7 @@ NOTE-END */ | |||
| 58 | (copy-file), it would say that it is non-critical... | 58 | (copy-file), it would say that it is non-critical... |
| 59 | #endif /* 0 */ | 59 | #endif /* 0 */ |
| 60 | 60 | ||
| 61 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 61 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 62 | is the most significant byte. */ | 62 | is the most significant byte. */ |
| 63 | 63 | ||
| 64 | #define WORDS_BIG_ENDIAN | 64 | #define WORDS_BIG_ENDIAN |
diff --git a/src/m/isi-ov.h b/src/m/isi-ov.h index 7e25ed9d277..6706ee9981b 100644 --- a/src/m/isi-ov.h +++ b/src/m/isi-ov.h | |||
| @@ -30,7 +30,7 @@ NOTE-END */ | |||
| 30 | 30 | ||
| 31 | #define ISI68K | 31 | #define ISI68K |
| 32 | 32 | ||
| 33 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 33 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 34 | is the most significant byte. */ | 34 | is the most significant byte. */ |
| 35 | 35 | ||
| 36 | #define WORDS_BIG_ENDIAN | 36 | #define WORDS_BIG_ENDIAN |
diff --git a/src/m/m68k.h b/src/m/m68k.h index c771e863711..4c600a44d8c 100644 --- a/src/m/m68k.h +++ b/src/m/m68k.h | |||
| @@ -24,7 +24,7 @@ Boston, MA 02110-1301, USA. */ | |||
| 24 | the size of various data types. */ | 24 | the size of various data types. */ |
| 25 | 25 | ||
| 26 | 26 | ||
| 27 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 27 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 28 | is the most significant byte. */ | 28 | is the most significant byte. */ |
| 29 | 29 | ||
| 30 | #define WORDS_BIG_ENDIAN | 30 | #define WORDS_BIG_ENDIAN |
diff --git a/src/m/macppc.h b/src/m/macppc.h index cc4afe31519..d4561c0289f 100644 --- a/src/m/macppc.h +++ b/src/m/macppc.h | |||
| @@ -19,7 +19,7 @@ along with GNU Emacs; see the file COPYING. If not, write to | |||
| 19 | the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 19 | the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 20 | Boston, MA 02110-1301, USA. */ | 20 | Boston, MA 02110-1301, USA. */ |
| 21 | 21 | ||
| 22 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 22 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 23 | is the most significant byte. */ | 23 | is the most significant byte. */ |
| 24 | 24 | ||
| 25 | #define WORDS_BIG_ENDIAN | 25 | #define WORDS_BIG_ENDIAN |
diff --git a/src/m/masscomp.h b/src/m/masscomp.h index ac753de1537..4e95c268860 100644 --- a/src/m/masscomp.h +++ b/src/m/masscomp.h | |||
| @@ -24,7 +24,7 @@ Boston, MA 02110-1301, USA. */ | |||
| 24 | operating system this machine is likely to run. | 24 | operating system this machine is likely to run. |
| 25 | USUAL-OPSYS="rtu" */ | 25 | USUAL-OPSYS="rtu" */ |
| 26 | 26 | ||
| 27 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 27 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 28 | is the most significant byte. */ | 28 | is the most significant byte. */ |
| 29 | 29 | ||
| 30 | #define WORDS_BIG_ENDIAN | 30 | #define WORDS_BIG_ENDIAN |
diff --git a/src/m/mega68.h b/src/m/mega68.h index 6d991ba06a2..0d22b572fc5 100644 --- a/src/m/mega68.h +++ b/src/m/mega68.h | |||
| @@ -24,7 +24,7 @@ Boston, MA 02110-1301, USA. */ | |||
| 24 | operating system this machine is likely to run. | 24 | operating system this machine is likely to run. |
| 25 | USUAL-OPSYS="bsd4-2" */ | 25 | USUAL-OPSYS="bsd4-2" */ |
| 26 | 26 | ||
| 27 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 27 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 28 | is the most significant byte. */ | 28 | is the most significant byte. */ |
| 29 | 29 | ||
| 30 | #define WORDS_BIG_ENDIAN | 30 | #define WORDS_BIG_ENDIAN |
diff --git a/src/m/mg1.h b/src/m/mg1.h index 647544e21e4..515e9e23a96 100644 --- a/src/m/mg1.h +++ b/src/m/mg1.h | |||
| @@ -34,7 +34,7 @@ own configuration files, please let the Free Software Foundation in on | |||
| 34 | your work; we'd like to distribute this information. | 34 | your work; we'd like to distribute this information. |
| 35 | NOTE-END */ | 35 | NOTE-END */ |
| 36 | 36 | ||
| 37 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 37 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 38 | is the most significant byte. */ | 38 | is the most significant byte. */ |
| 39 | 39 | ||
| 40 | #undef WORDS_BIG_ENDIAN | 40 | #undef WORDS_BIG_ENDIAN |
diff --git a/src/m/mips-siemens.h b/src/m/mips-siemens.h index d90a651d361..53366a1332e 100644 --- a/src/m/mips-siemens.h +++ b/src/m/mips-siemens.h | |||
| @@ -36,7 +36,7 @@ This is the m- file for SNI RM*00 machines. Use s- sinix5-4.h file! | |||
| 36 | With this the file mips-siemens.h is obsolete. | 36 | With this the file mips-siemens.h is obsolete. |
| 37 | NOTE-END */ | 37 | NOTE-END */ |
| 38 | 38 | ||
| 39 | /* Define BIG_ENDIAN iff lowest-numbered byte in a word | 39 | /* Define BIG_ENDIAN if lowest-numbered byte in a word |
| 40 | is the most significant byte. */ | 40 | is the most significant byte. */ |
| 41 | 41 | ||
| 42 | #define BIG_ENDIAN | 42 | #define BIG_ENDIAN |
diff --git a/src/m/mips.h b/src/m/mips.h index b18324fb8b7..6c039c5e14c 100644 --- a/src/m/mips.h +++ b/src/m/mips.h | |||
| @@ -29,7 +29,7 @@ Use mips4.h for RISCOS version 4; use s-bsd4-3.h with the BSD world. | |||
| 29 | Note that the proper m file for the Decstation is pmax.h. | 29 | Note that the proper m file for the Decstation is pmax.h. |
| 30 | NOTE-END */ | 30 | NOTE-END */ |
| 31 | 31 | ||
| 32 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 32 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 33 | is the most significant byte. */ | 33 | is the most significant byte. */ |
| 34 | 34 | ||
| 35 | #if ! (defined (__MIPSEL__) || defined (MIPSEL) || defined (_MIPSEL)) | 35 | #if ! (defined (__MIPSEL__) || defined (MIPSEL) || defined (_MIPSEL)) |
diff --git a/src/m/news.h b/src/m/news.h index 419015dd150..084c5abb92c 100644 --- a/src/m/news.h +++ b/src/m/news.h | |||
| @@ -34,7 +34,7 @@ NOTE-END */ | |||
| 34 | #define m68000 | 34 | #define m68000 |
| 35 | #endif | 35 | #endif |
| 36 | 36 | ||
| 37 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 37 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 38 | is the most significant byte. */ | 38 | is the most significant byte. */ |
| 39 | 39 | ||
| 40 | #define WORDS_BIG_ENDIAN | 40 | #define WORDS_BIG_ENDIAN |
diff --git a/src/m/next.h b/src/m/next.h index ef92607d957..bca8ac39d47 100644 --- a/src/m/next.h +++ b/src/m/next.h | |||
| @@ -26,7 +26,7 @@ Boston, MA 02110-1301, USA. */ | |||
| 26 | #define NeXT | 26 | #define NeXT |
| 27 | #endif | 27 | #endif |
| 28 | 28 | ||
| 29 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 29 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 30 | is the most significant byte. */ | 30 | is the most significant byte. */ |
| 31 | 31 | ||
| 32 | /* Let the compiler tell us. */ | 32 | /* Let the compiler tell us. */ |
diff --git a/src/m/ns16000.h b/src/m/ns16000.h index c64bfa32482..6feddd97610 100644 --- a/src/m/ns16000.h +++ b/src/m/ns16000.h | |||
| @@ -30,7 +30,7 @@ For a Tektronix 16000 box (a 6130, perhaps?), use `-opsystem=bsd4-2'. | |||
| 30 | Use `-machine=ns16000' for both. | 30 | Use `-machine=ns16000' for both. |
| 31 | NOTE-END */ | 31 | NOTE-END */ |
| 32 | 32 | ||
| 33 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 33 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 34 | is the most significant byte. */ | 34 | is the most significant byte. */ |
| 35 | 35 | ||
| 36 | #undef WORDS_BIG_ENDIAN | 36 | #undef WORDS_BIG_ENDIAN |
diff --git a/src/m/ns32000.h b/src/m/ns32000.h index 0b776115ca8..b6484b4b219 100644 --- a/src/m/ns32000.h +++ b/src/m/ns32000.h | |||
| @@ -25,7 +25,7 @@ Boston, MA 02110-1301, USA. */ | |||
| 25 | operating system this machine is likely to run. | 25 | operating system this machine is likely to run. |
| 26 | USUAL-OPSYS="usg5-2" */ | 26 | USUAL-OPSYS="usg5-2" */ |
| 27 | 27 | ||
| 28 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 28 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 29 | is the most significant byte. */ | 29 | is the most significant byte. */ |
| 30 | 30 | ||
| 31 | #undef WORDS_BIG_ENDIAN | 31 | #undef WORDS_BIG_ENDIAN |
diff --git a/src/m/nu.h b/src/m/nu.h index 347606a6c01..279d14ff915 100644 --- a/src/m/nu.h +++ b/src/m/nu.h | |||
| @@ -24,7 +24,7 @@ Boston, MA 02110-1301, USA. */ | |||
| 24 | operating system this machine is likely to run. | 24 | operating system this machine is likely to run. |
| 25 | USUAL-OPSYS="usg5-2" */ | 25 | USUAL-OPSYS="usg5-2" */ |
| 26 | 26 | ||
| 27 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 27 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 28 | is the most significant byte. */ | 28 | is the most significant byte. */ |
| 29 | 29 | ||
| 30 | #define WORDS_BIG_ENDIAN | 30 | #define WORDS_BIG_ENDIAN |
diff --git a/src/m/orion.h b/src/m/orion.h index 36a74b3cc3b..cc3a7e395fc 100644 --- a/src/m/orion.h +++ b/src/m/orion.h | |||
| @@ -24,7 +24,7 @@ Boston, MA 02110-1301, USA. */ | |||
| 24 | operating system this machine is likely to run. | 24 | operating system this machine is likely to run. |
| 25 | USUAL-OPSYS="bsd4-2" */ | 25 | USUAL-OPSYS="bsd4-2" */ |
| 26 | 26 | ||
| 27 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 27 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 28 | is the most significant byte. */ | 28 | is the most significant byte. */ |
| 29 | 29 | ||
| 30 | #undef WORDS_BIG_ENDIAN | 30 | #undef WORDS_BIG_ENDIAN |
diff --git a/src/m/orion105.h b/src/m/orion105.h index 73408ed1b2f..fabcf67e2a9 100644 --- a/src/m/orion105.h +++ b/src/m/orion105.h | |||
| @@ -25,7 +25,7 @@ Boston, MA 02110-1301, USA. */ | |||
| 25 | operating system this machine is likely to run. | 25 | operating system this machine is likely to run. |
| 26 | USUAL-OPSYS="bsd4-2" */ | 26 | USUAL-OPSYS="bsd4-2" */ |
| 27 | 27 | ||
| 28 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 28 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 29 | is the most significant byte. */ | 29 | is the most significant byte. */ |
| 30 | 30 | ||
| 31 | #undef WORDS_BIG_ENDIAN | 31 | #undef WORDS_BIG_ENDIAN |
diff --git a/src/m/pfa50.h b/src/m/pfa50.h index 8f1f146000e..5f98dc993c7 100644 --- a/src/m/pfa50.h +++ b/src/m/pfa50.h | |||
| @@ -20,7 +20,7 @@ the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
| 20 | Boston, MA 02110-1301, USA. */ | 20 | Boston, MA 02110-1301, USA. */ |
| 21 | 21 | ||
| 22 | 22 | ||
| 23 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 23 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 24 | is the most significant byte. */ | 24 | is the most significant byte. */ |
| 25 | 25 | ||
| 26 | #define WORDS_BIG_ENDIAN | 26 | #define WORDS_BIG_ENDIAN |
diff --git a/src/m/plexus.h b/src/m/plexus.h index 4a4e6a32f7f..51961977904 100644 --- a/src/m/plexus.h +++ b/src/m/plexus.h | |||
| @@ -24,7 +24,7 @@ Boston, MA 02110-1301, USA. */ | |||
| 24 | operating system this machine is likely to run. | 24 | operating system this machine is likely to run. |
| 25 | USUAL-OPSYS="usg5-2" */ | 25 | USUAL-OPSYS="usg5-2" */ |
| 26 | 26 | ||
| 27 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 27 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 28 | is the most significant byte. */ | 28 | is the most significant byte. */ |
| 29 | 29 | ||
| 30 | #define WORDS_BIG_ENDIAN | 30 | #define WORDS_BIG_ENDIAN |
diff --git a/src/m/powermac.h b/src/m/powermac.h index 729bbb0358b..2dde47bd6cf 100644 --- a/src/m/powermac.h +++ b/src/m/powermac.h | |||
| @@ -23,7 +23,7 @@ Boston, MA 02110-1301, USA. */ | |||
| 23 | operating system this machine is likely to run. | 23 | operating system this machine is likely to run. |
| 24 | USUAL-OPSYS="darwin" */ | 24 | USUAL-OPSYS="darwin" */ |
| 25 | 25 | ||
| 26 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 26 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 27 | is the most significant byte. */ | 27 | is the most significant byte. */ |
| 28 | 28 | ||
| 29 | #define WORDS_BIG_ENDIAN | 29 | #define WORDS_BIG_ENDIAN |
diff --git a/src/m/powerpcle.h b/src/m/powerpcle.h index 403d6986bf8..5be26e93b17 100644 --- a/src/m/powerpcle.h +++ b/src/m/powerpcle.h | |||
| @@ -24,7 +24,7 @@ Boston, MA 02110-1301, USA. */ | |||
| 24 | USUAL-OPSYS="Solaris2.5.1 Windows/NT AIX 4.1.2" | 24 | USUAL-OPSYS="Solaris2.5.1 Windows/NT AIX 4.1.2" |
| 25 | */ | 25 | */ |
| 26 | 26 | ||
| 27 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 27 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 28 | is the most significant byte. */ | 28 | is the most significant byte. */ |
| 29 | 29 | ||
| 30 | #undef WORDS_BIG_ENDIAN | 30 | #undef WORDS_BIG_ENDIAN |
diff --git a/src/m/pyramid.h b/src/m/pyramid.h index 9ee3fefe387..1b834c60ba0 100644 --- a/src/m/pyramid.h +++ b/src/m/pyramid.h | |||
| @@ -24,7 +24,7 @@ Boston, MA 02110-1301, USA. */ | |||
| 24 | operating system this machine is likely to run. | 24 | operating system this machine is likely to run. |
| 25 | USUAL-OPSYS="bsd4-2" */ | 25 | USUAL-OPSYS="bsd4-2" */ |
| 26 | 26 | ||
| 27 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 27 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 28 | is the most significant byte. */ | 28 | is the most significant byte. */ |
| 29 | 29 | ||
| 30 | #define WORDS_BIG_ENDIAN | 30 | #define WORDS_BIG_ENDIAN |
diff --git a/src/m/sequent.h b/src/m/sequent.h index be5d3f19bd1..3c06d854b41 100644 --- a/src/m/sequent.h +++ b/src/m/sequent.h | |||
| @@ -31,7 +31,7 @@ NOTE-END */ | |||
| 31 | /* NOTE: this file works for DYNIX release 2.0 | 31 | /* NOTE: this file works for DYNIX release 2.0 |
| 32 | (not tested on 1.3) on NS32000's */ | 32 | (not tested on 1.3) on NS32000's */ |
| 33 | 33 | ||
| 34 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 34 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 35 | is the most significant byte. */ | 35 | is the most significant byte. */ |
| 36 | 36 | ||
| 37 | #undef WORDS_BIG_ENDIAN | 37 | #undef WORDS_BIG_ENDIAN |
diff --git a/src/m/sh3el.h b/src/m/sh3el.h index 5851ade1523..eefcccea6de 100644 --- a/src/m/sh3el.h +++ b/src/m/sh3el.h | |||
| @@ -23,7 +23,7 @@ Boston, MA 02111-1307, USA. */ | |||
| 23 | operating system this machine is likely to run. | 23 | operating system this machine is likely to run. |
| 24 | USUAL-OPSYS="<name of system .h file here, without the s- or .h>" */ | 24 | USUAL-OPSYS="<name of system .h file here, without the s- or .h>" */ |
| 25 | 25 | ||
| 26 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 26 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 27 | is the most significant byte. */ | 27 | is the most significant byte. */ |
| 28 | 28 | ||
| 29 | #undef WORDS_BIG_ENDIAN | 29 | #undef WORDS_BIG_ENDIAN |
diff --git a/src/m/sparc.h b/src/m/sparc.h index f59c2c2b969..8df81ee91aa 100644 --- a/src/m/sparc.h +++ b/src/m/sparc.h | |||
| @@ -28,7 +28,7 @@ Use -opsystem=sunos4 for operating system version 4, and | |||
| 28 | -opsystem=bsd4-2 for earlier versions. | 28 | -opsystem=bsd4-2 for earlier versions. |
| 29 | NOTE-END */ | 29 | NOTE-END */ |
| 30 | 30 | ||
| 31 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 31 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 32 | is the most significant byte. */ | 32 | is the most significant byte. */ |
| 33 | 33 | ||
| 34 | #define WORDS_BIG_ENDIAN | 34 | #define WORDS_BIG_ENDIAN |
diff --git a/src/m/sps7.h b/src/m/sps7.h index 68acf2c6c52..67fc60c1b6a 100644 --- a/src/m/sps7.h +++ b/src/m/sps7.h | |||
| @@ -24,7 +24,7 @@ Boston, MA 02110-1301, USA. */ | |||
| 24 | operating system this machine is likely to run. | 24 | operating system this machine is likely to run. |
| 25 | USUAL-OPSYS="usg5-2" */ | 25 | USUAL-OPSYS="usg5-2" */ |
| 26 | 26 | ||
| 27 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 27 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 28 | is the most significant byte. */ | 28 | is the most significant byte. */ |
| 29 | 29 | ||
| 30 | #define WORDS_BIG_ENDIAN | 30 | #define WORDS_BIG_ENDIAN |
diff --git a/src/m/sr2k.h b/src/m/sr2k.h index ba4a9a905ab..6c17795e058 100644 --- a/src/m/sr2k.h +++ b/src/m/sr2k.h | |||
| @@ -24,7 +24,7 @@ Boston, MA 02110-1301, USA. */ | |||
| 24 | operating system this machine is likely to run. | 24 | operating system this machine is likely to run. |
| 25 | USUAL-OPSYS="hpux" */ | 25 | USUAL-OPSYS="hpux" */ |
| 26 | 26 | ||
| 27 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 27 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 28 | is the most significant byte. */ | 28 | is the most significant byte. */ |
| 29 | 29 | ||
| 30 | #define WORDS_BIG_ENDIAN | 30 | #define WORDS_BIG_ENDIAN |
diff --git a/src/m/stride.h b/src/m/stride.h index cb0380024a1..d846a6c9843 100644 --- a/src/m/stride.h +++ b/src/m/stride.h | |||
| @@ -24,7 +24,7 @@ Boston, MA 02110-1301, USA. */ | |||
| 24 | operating system this machine is likely to run. | 24 | operating system this machine is likely to run. |
| 25 | USUAL-OPSYS="usg5-2" */ | 25 | USUAL-OPSYS="usg5-2" */ |
| 26 | 26 | ||
| 27 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 27 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 28 | is the most significant byte. */ | 28 | is the most significant byte. */ |
| 29 | 29 | ||
| 30 | #define WORDS_BIG_ENDIAN | 30 | #define WORDS_BIG_ENDIAN |
diff --git a/src/m/sun1.h b/src/m/sun1.h index fda451a9310..03cb4e803ff 100644 --- a/src/m/sun1.h +++ b/src/m/sun1.h | |||
| @@ -40,7 +40,7 @@ Sun 1, 2 and 3 (-machine=sun1, -machine=sun2, -machine=sun3; | |||
| 40 | problems caused by bugs in the "export" version of SunOS 4. | 40 | problems caused by bugs in the "export" version of SunOS 4. |
| 41 | NOTE-END */ | 41 | NOTE-END */ |
| 42 | 42 | ||
| 43 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 43 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 44 | is the most significant byte. */ | 44 | is the most significant byte. */ |
| 45 | 45 | ||
| 46 | #define WORDS_BIG_ENDIAN | 46 | #define WORDS_BIG_ENDIAN |
diff --git a/src/m/sun2.h b/src/m/sun2.h index 00b7ae97c4d..e764ded3ce7 100644 --- a/src/m/sun2.h +++ b/src/m/sun2.h | |||
| @@ -42,7 +42,7 @@ Sun 1, 2 and 3 (-machine=sun1, -machine=sun2, -machine=sun3; | |||
| 42 | problems caused by bugs in the "export" version of SunOS 4. | 42 | problems caused by bugs in the "export" version of SunOS 4. |
| 43 | NOTE-END */ | 43 | NOTE-END */ |
| 44 | 44 | ||
| 45 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 45 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 46 | is the most significant byte. */ | 46 | is the most significant byte. */ |
| 47 | 47 | ||
| 48 | #define WORDS_BIG_ENDIAN | 48 | #define WORDS_BIG_ENDIAN |
diff --git a/src/m/tad68k.h b/src/m/tad68k.h index 5e982a314ab..c8be8763fb5 100644 --- a/src/m/tad68k.h +++ b/src/m/tad68k.h | |||
| @@ -24,7 +24,7 @@ Boston, MA 02110-1301, USA. */ | |||
| 24 | operating system this machine is likely to run. | 24 | operating system this machine is likely to run. |
| 25 | USUAL-OPSYS="usg5-3" */ | 25 | USUAL-OPSYS="usg5-3" */ |
| 26 | 26 | ||
| 27 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 27 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 28 | is the most significant byte. */ | 28 | is the most significant byte. */ |
| 29 | 29 | ||
| 30 | #define WORDS_BIG_ENDIAN | 30 | #define WORDS_BIG_ENDIAN |
diff --git a/src/m/tahoe.h b/src/m/tahoe.h index 8fe41cd4109..9b9271577fc 100644 --- a/src/m/tahoe.h +++ b/src/m/tahoe.h | |||
| @@ -29,7 +29,7 @@ Use -opsystem=bsd4-2 or -opsystem=bsd4-3, depending on the version of | |||
| 29 | Berkeley you are running. | 29 | Berkeley you are running. |
| 30 | NOTE-END */ | 30 | NOTE-END */ |
| 31 | 31 | ||
| 32 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 32 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 33 | is the most significant byte. */ | 33 | is the most significant byte. */ |
| 34 | 34 | ||
| 35 | #define WORDS_BIG_ENDIAN | 35 | #define WORDS_BIG_ENDIAN |
diff --git a/src/m/targon31.h b/src/m/targon31.h index 0c657e0ea5d..39e995b076d 100644 --- a/src/m/targon31.h +++ b/src/m/targon31.h | |||
| @@ -24,7 +24,7 @@ Boston, MA 02110-1301, USA. */ | |||
| 24 | operating system this machine is likely to run. | 24 | operating system this machine is likely to run. |
| 25 | USUAL-OPSYS="usg5-2-2" */ | 25 | USUAL-OPSYS="usg5-2-2" */ |
| 26 | 26 | ||
| 27 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 27 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 28 | is the most significant byte. */ | 28 | is the most significant byte. */ |
| 29 | 29 | ||
| 30 | #define WORDS_BIG_ENDIAN | 30 | #define WORDS_BIG_ENDIAN |
diff --git a/src/m/tek4300.h b/src/m/tek4300.h index be43210212a..6498238461d 100644 --- a/src/m/tek4300.h +++ b/src/m/tek4300.h | |||
| @@ -24,7 +24,7 @@ Boston, MA 02110-1301, USA. */ | |||
| 24 | operating system this machine is likely to run. | 24 | operating system this machine is likely to run. |
| 25 | USUAL-OPSYS="bsd4-3" */ | 25 | USUAL-OPSYS="bsd4-3" */ |
| 26 | 26 | ||
| 27 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 27 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 28 | is the most significant byte. */ | 28 | is the most significant byte. */ |
| 29 | 29 | ||
| 30 | #define WORDS_BIG_ENDIAN | 30 | #define WORDS_BIG_ENDIAN |
diff --git a/src/m/tekxd88.h b/src/m/tekxd88.h index 1d46bb9bb55..f351229292f 100644 --- a/src/m/tekxd88.h +++ b/src/m/tekxd88.h | |||
| @@ -22,7 +22,7 @@ the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
| 22 | Boston, MA 02110-1301, USA. */ | 22 | Boston, MA 02110-1301, USA. */ |
| 23 | 23 | ||
| 24 | 24 | ||
| 25 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 25 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 26 | is the most significant byte. */ | 26 | is the most significant byte. */ |
| 27 | 27 | ||
| 28 | #define WORDS_BIG_ENDIAN | 28 | #define WORDS_BIG_ENDIAN |
diff --git a/src/m/template.h b/src/m/template.h index fccc5b0901c..b893ba23df2 100644 --- a/src/m/template.h +++ b/src/m/template.h | |||
| @@ -24,7 +24,7 @@ Boston, MA 02110-1301, USA. */ | |||
| 24 | operating system this machine is likely to run. | 24 | operating system this machine is likely to run. |
| 25 | USUAL-OPSYS="<name of system .h file here, without the s- or .h>" */ | 25 | USUAL-OPSYS="<name of system .h file here, without the s- or .h>" */ |
| 26 | 26 | ||
| 27 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 27 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 28 | is the most significant byte. */ | 28 | is the most significant byte. */ |
| 29 | 29 | ||
| 30 | #define WORDS_BIG_ENDIAN | 30 | #define WORDS_BIG_ENDIAN |
diff --git a/src/m/tower32.h b/src/m/tower32.h index 0ce623b7f37..01daada2423 100644 --- a/src/m/tower32.h +++ b/src/m/tower32.h | |||
| @@ -24,7 +24,7 @@ Boston, MA 02110-1301, USA. */ | |||
| 24 | operating system this machine is likely to run. | 24 | operating system this machine is likely to run. |
| 25 | USUAL-OPSYS="usg5-2-2" */ | 25 | USUAL-OPSYS="usg5-2-2" */ |
| 26 | 26 | ||
| 27 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 27 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 28 | is the most significant byte. */ | 28 | is the most significant byte. */ |
| 29 | 29 | ||
| 30 | #define WORDS_BIG_ENDIAN | 30 | #define WORDS_BIG_ENDIAN |
diff --git a/src/m/tower32v3.h b/src/m/tower32v3.h index 226c0e2640a..ff209edab41 100644 --- a/src/m/tower32v3.h +++ b/src/m/tower32v3.h | |||
| @@ -25,7 +25,7 @@ Boston, MA 02110-1301, USA. */ | |||
| 25 | operating system this machine is likely to run. | 25 | operating system this machine is likely to run. |
| 26 | USUAL-OPSYS="usg5-3" */ | 26 | USUAL-OPSYS="usg5-3" */ |
| 27 | 27 | ||
| 28 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 28 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 29 | is the most significant byte. */ | 29 | is the most significant byte. */ |
| 30 | 30 | ||
| 31 | #define WORDS_BIG_ENDIAN | 31 | #define WORDS_BIG_ENDIAN |
diff --git a/src/m/ustation.h b/src/m/ustation.h index f88cdc5ee63..0ac833c28da 100644 --- a/src/m/ustation.h +++ b/src/m/ustation.h | |||
| @@ -24,7 +24,7 @@ Boston, MA 02110-1301, USA. */ | |||
| 24 | operating system this machine is likely to run. | 24 | operating system this machine is likely to run. |
| 25 | USUAL-OPSYS="usg5-3" */ | 25 | USUAL-OPSYS="usg5-3" */ |
| 26 | 26 | ||
| 27 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 27 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 28 | is the most significant byte. */ | 28 | is the most significant byte. */ |
| 29 | 29 | ||
| 30 | #define WORDS_BIG_ENDIAN | 30 | #define WORDS_BIG_ENDIAN |
diff --git a/src/m/vax.h b/src/m/vax.h index 80844ba3ba6..82695074424 100644 --- a/src/m/vax.h +++ b/src/m/vax.h | |||
| @@ -52,7 +52,7 @@ Vax running VMS (-opsystem=vms) | |||
| 52 | 52 | ||
| 53 | NOTE-END */ | 53 | NOTE-END */ |
| 54 | 54 | ||
| 55 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 55 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 56 | is the most significant byte. */ | 56 | is the most significant byte. */ |
| 57 | 57 | ||
| 58 | #undef WORDS_BIG_ENDIAN | 58 | #undef WORDS_BIG_ENDIAN |
diff --git a/src/m/wicat.h b/src/m/wicat.h index 67409844666..3ac7b530739 100644 --- a/src/m/wicat.h +++ b/src/m/wicat.h | |||
| @@ -24,7 +24,7 @@ Boston, MA 02110-1301, USA. */ | |||
| 24 | operating system this machine is likely to run. | 24 | operating system this machine is likely to run. |
| 25 | USUAL-OPSYS="usg5-2" */ | 25 | USUAL-OPSYS="usg5-2" */ |
| 26 | 26 | ||
| 27 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 27 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 28 | is the most significant byte. */ | 28 | is the most significant byte. */ |
| 29 | 29 | ||
| 30 | #define WORDS_BIG_ENDIAN | 30 | #define WORDS_BIG_ENDIAN |
diff --git a/src/m/windowsnt.h b/src/m/windowsnt.h index f1efe64a4f5..ddad551c772 100644 --- a/src/m/windowsnt.h +++ b/src/m/windowsnt.h | |||
| @@ -24,7 +24,7 @@ Boston, MA 02110-1301, USA. */ | |||
| 24 | operating system this machine is likely to run. | 24 | operating system this machine is likely to run. |
| 25 | USUAL-OPSYS="<name of system .h file here, without the s- or .h>" */ | 25 | USUAL-OPSYS="<name of system .h file here, without the s- or .h>" */ |
| 26 | 26 | ||
| 27 | /* Define BIG_ENDIAN iff lowest-numbered byte in a word | 27 | /* Define BIG_ENDIAN if lowest-numbered byte in a word |
| 28 | is the most significant byte. */ | 28 | is the most significant byte. */ |
| 29 | 29 | ||
| 30 | /* #define BIG_ENDIAN */ | 30 | /* #define BIG_ENDIAN */ |
diff --git a/src/m/xps100.h b/src/m/xps100.h index 691f5fedbd6..3b378319ceb 100644 --- a/src/m/xps100.h +++ b/src/m/xps100.h | |||
| @@ -26,7 +26,7 @@ Boston, MA 02110-1301, USA. */ | |||
| 26 | operating system this machine is likely to run. | 26 | operating system this machine is likely to run. |
| 27 | USUAL-OPSYS="usg5-2" */ | 27 | USUAL-OPSYS="usg5-2" */ |
| 28 | 28 | ||
| 29 | /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | 29 | /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
| 30 | is the most significant byte. */ | 30 | is the most significant byte. */ |
| 31 | 31 | ||
| 32 | #define WORDS_BIG_ENDIAN | 32 | #define WORDS_BIG_ENDIAN |
diff --git a/src/macterm.c b/src/macterm.c index 092b7488a5d..9655b09c819 100644 --- a/src/macterm.c +++ b/src/macterm.c | |||
| @@ -12143,7 +12143,7 @@ XTread_socket (sd, expected, hold_quit) | |||
| 12143 | /* Window will be selected only when it is | 12143 | /* Window will be selected only when it is |
| 12144 | not selected now and last mouse movement | 12144 | not selected now and last mouse movement |
| 12145 | event was not in it. Minibuffer window | 12145 | event was not in it. Minibuffer window |
| 12146 | will be selected iff it is active. */ | 12146 | will be selected only when it is active. */ |
| 12147 | if (WINDOWP (window) | 12147 | if (WINDOWP (window) |
| 12148 | && !EQ (window, last_window) | 12148 | && !EQ (window, last_window) |
| 12149 | && !EQ (window, selected_window)) | 12149 | && !EQ (window, selected_window)) |
diff --git a/src/macterm.h b/src/macterm.h index 2dc13665f67..8a85e714ab5 100644 --- a/src/macterm.h +++ b/src/macterm.h | |||
| @@ -150,7 +150,7 @@ struct mac_display_info | |||
| 150 | char *mac_id_name; | 150 | char *mac_id_name; |
| 151 | 151 | ||
| 152 | /* The number of fonts actually stored in the font table. | 152 | /* The number of fonts actually stored in the font table. |
| 153 | font_table[n] is used and valid iff 0 <= n < n_fonts. 0 <= | 153 | font_table[n] is used and valid if 0 <= n < n_fonts. 0 <= |
| 154 | n_fonts <= font_table_size and font_table[i].name != 0. */ | 154 | n_fonts <= font_table_size and font_table[i].name != 0. */ |
| 155 | int n_fonts; | 155 | int n_fonts; |
| 156 | 156 | ||
diff --git a/src/msdos.c b/src/msdos.c index 59854268e14..ef65597f7e7 100644 --- a/src/msdos.c +++ b/src/msdos.c | |||
| @@ -3231,7 +3231,7 @@ dos_rawgetc () | |||
| 3231 | `dos_get_modifiers', they might have already released the | 3231 | `dos_get_modifiers', they might have already released the |
| 3232 | Alt key, and Emacs gets just `x', which is BAD. | 3232 | Alt key, and Emacs gets just `x', which is BAD. |
| 3233 | However, for keys with the `Map' property set, the ASCII | 3233 | However, for keys with the `Map' property set, the ASCII |
| 3234 | code returns zero iff Alt is pressed. So, when we DON'T | 3234 | code returns zero only if Alt is pressed. So, when we DON'T |
| 3235 | have to support international_keyboard, we don't have to | 3235 | have to support international_keyboard, we don't have to |
| 3236 | distinguish between the left and right Alt keys, and we | 3236 | distinguish between the left and right Alt keys, and we |
| 3237 | can set the META modifier for any keys with the `Map' | 3237 | can set the META modifier for any keys with the `Map' |
diff --git a/src/print.c b/src/print.c index f7060024f32..cae80d1acfe 100644 --- a/src/print.c +++ b/src/print.c | |||
| @@ -93,8 +93,8 @@ Lisp_Object Vfloat_output_format, Qfloat_output_format; | |||
| 93 | /* Avoid actual stack overflow in print. */ | 93 | /* Avoid actual stack overflow in print. */ |
| 94 | int print_depth; | 94 | int print_depth; |
| 95 | 95 | ||
| 96 | /* Nonzero if inside outputting backquote in old style. */ | 96 | /* Level of nesting inside outputting backquote in new style. */ |
| 97 | int old_backquote_output; | 97 | int new_backquote_output; |
| 98 | 98 | ||
| 99 | /* Detect most circularities to print finite output. */ | 99 | /* Detect most circularities to print finite output. */ |
| 100 | #define PRINT_CIRCLE 200 | 100 | #define PRINT_CIRCLE 200 |
| @@ -1291,7 +1291,7 @@ print (obj, printcharfun, escapeflag) | |||
| 1291 | register Lisp_Object printcharfun; | 1291 | register Lisp_Object printcharfun; |
| 1292 | int escapeflag; | 1292 | int escapeflag; |
| 1293 | { | 1293 | { |
| 1294 | old_backquote_output = 0; | 1294 | new_backquote_output = 0; |
| 1295 | 1295 | ||
| 1296 | /* Reset print_number_index and Vprint_number_table only when | 1296 | /* Reset print_number_index and Vprint_number_table only when |
| 1297 | the variable Vprint_continuous_numbering is nil. Otherwise, | 1297 | the variable Vprint_continuous_numbering is nil. Otherwise, |
| @@ -1756,14 +1756,24 @@ print_object (obj, printcharfun, escapeflag) | |||
| 1756 | print_object (XCAR (XCDR (obj)), printcharfun, escapeflag); | 1756 | print_object (XCAR (XCDR (obj)), printcharfun, escapeflag); |
| 1757 | } | 1757 | } |
| 1758 | else if (print_quoted && CONSP (XCDR (obj)) && NILP (XCDR (XCDR (obj))) | 1758 | else if (print_quoted && CONSP (XCDR (obj)) && NILP (XCDR (XCDR (obj))) |
| 1759 | && ! old_backquote_output | 1759 | && ((EQ (XCAR (obj), Qbackquote)))) |
| 1760 | { | ||
| 1761 | print_object (XCAR (obj), printcharfun, 0); | ||
| 1762 | new_backquote_output++; | ||
| 1763 | print_object (XCAR (XCDR (obj)), printcharfun, escapeflag); | ||
| 1764 | new_backquote_output--; | ||
| 1765 | } | ||
| 1766 | else if (print_quoted && CONSP (XCDR (obj)) && NILP (XCDR (XCDR (obj))) | ||
| 1767 | && new_backquote_output | ||
| 1760 | && ((EQ (XCAR (obj), Qbackquote) | 1768 | && ((EQ (XCAR (obj), Qbackquote) |
| 1761 | || EQ (XCAR (obj), Qcomma) | 1769 | || EQ (XCAR (obj), Qcomma) |
| 1762 | || EQ (XCAR (obj), Qcomma_at) | 1770 | || EQ (XCAR (obj), Qcomma_at) |
| 1763 | || EQ (XCAR (obj), Qcomma_dot)))) | 1771 | || EQ (XCAR (obj), Qcomma_dot)))) |
| 1764 | { | 1772 | { |
| 1765 | print_object (XCAR (obj), printcharfun, 0); | 1773 | print_object (XCAR (obj), printcharfun, 0); |
| 1774 | new_backquote_output--; | ||
| 1766 | print_object (XCAR (XCDR (obj)), printcharfun, escapeflag); | 1775 | print_object (XCAR (XCDR (obj)), printcharfun, escapeflag); |
| 1776 | new_backquote_output++; | ||
| 1767 | } | 1777 | } |
| 1768 | else | 1778 | else |
| 1769 | { | 1779 | { |
| @@ -1783,9 +1793,7 @@ print_object (obj, printcharfun, escapeflag) | |||
| 1783 | print_object (Qbackquote, printcharfun, 0); | 1793 | print_object (Qbackquote, printcharfun, 0); |
| 1784 | PRINTCHAR (' '); | 1794 | PRINTCHAR (' '); |
| 1785 | 1795 | ||
| 1786 | ++old_backquote_output; | ||
| 1787 | print_object (XCAR (XCDR (tem)), printcharfun, 0); | 1796 | print_object (XCAR (XCDR (tem)), printcharfun, 0); |
| 1788 | --old_backquote_output; | ||
| 1789 | PRINTCHAR (')'); | 1797 | PRINTCHAR (')'); |
| 1790 | 1798 | ||
| 1791 | obj = XCDR (obj); | 1799 | obj = XCDR (obj); |
diff --git a/src/process.c b/src/process.c index 08358539a6c..4515b7a2c86 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -2780,7 +2780,7 @@ The stopped state is cleared by `continue-process' and set by | |||
| 2780 | 2780 | ||
| 2781 | :filter-multibyte BOOL -- If BOOL is non-nil, strings given to the | 2781 | :filter-multibyte BOOL -- If BOOL is non-nil, strings given to the |
| 2782 | process filter are multibyte, otherwise they are unibyte. | 2782 | process filter are multibyte, otherwise they are unibyte. |
| 2783 | If this keyword is not specified, the strings are multibyte iff | 2783 | If this keyword is not specified, the strings are multibyte if |
| 2784 | `default-enable-multibyte-characters' is non-nil. | 2784 | `default-enable-multibyte-characters' is non-nil. |
| 2785 | 2785 | ||
| 2786 | :sentinel SENTINEL -- Install SENTINEL as the process sentinel. | 2786 | :sentinel SENTINEL -- Install SENTINEL as the process sentinel. |
| @@ -3917,7 +3917,7 @@ it specifies a fractional number of seconds to wait. | |||
| 3917 | If optional fourth arg JUST-THIS-ONE is non-nil, only accept output | 3917 | If optional fourth arg JUST-THIS-ONE is non-nil, only accept output |
| 3918 | from PROCESS, suspending reading output from other processes. | 3918 | from PROCESS, suspending reading output from other processes. |
| 3919 | If JUST-THIS-ONE is an integer, don't run any timers either. | 3919 | If JUST-THIS-ONE is an integer, don't run any timers either. |
| 3920 | Return non-nil iff we received any output before the timeout expired. */) | 3920 | Return non-nil if we received any output before the timeout expired. */) |
| 3921 | (process, seconds, millisec, just_this_one) | 3921 | (process, seconds, millisec, just_this_one) |
| 3922 | register Lisp_Object process, seconds, millisec, just_this_one; | 3922 | register Lisp_Object process, seconds, millisec, just_this_one; |
| 3923 | { | 3923 | { |
| @@ -4249,16 +4249,16 @@ select_wrapper (n, rfd, wfd, xfd, tmo) | |||
| 4249 | (and gobble terminal input into the buffer if any arrives). | 4249 | (and gobble terminal input into the buffer if any arrives). |
| 4250 | 4250 | ||
| 4251 | If WAIT_PROC is specified, wait until something arrives from that | 4251 | If WAIT_PROC is specified, wait until something arrives from that |
| 4252 | process. The return value is true iff we read some input from | 4252 | process. The return value is true if we read some input from |
| 4253 | that process. | 4253 | that process. |
| 4254 | 4254 | ||
| 4255 | If JUST_WAIT_PROC is non-nil, handle only output from WAIT_PROC | 4255 | If JUST_WAIT_PROC is non-nil, handle only output from WAIT_PROC |
| 4256 | (suspending output from other processes). A negative value | 4256 | (suspending output from other processes). A negative value |
| 4257 | means don't run any timers either. | 4257 | means don't run any timers either. |
| 4258 | 4258 | ||
| 4259 | If WAIT_PROC is specified, then the function returns true iff we | 4259 | If WAIT_PROC is specified, then the function returns true if we |
| 4260 | received input from that process before the timeout elapsed. | 4260 | received input from that process before the timeout elapsed. |
| 4261 | Otherwise, return true iff we received input from any process. */ | 4261 | Otherwise, return true if we received input from any process. */ |
| 4262 | 4262 | ||
| 4263 | int | 4263 | int |
| 4264 | wait_reading_process_output (time_limit, microsecs, read_kbd, do_display, | 4264 | wait_reading_process_output (time_limit, microsecs, read_kbd, do_display, |
| @@ -7356,7 +7356,7 @@ Lisp_Object QCtype; | |||
| 7356 | do_display != 0 means redisplay should be done to show subprocess | 7356 | do_display != 0 means redisplay should be done to show subprocess |
| 7357 | output that arrives. | 7357 | output that arrives. |
| 7358 | 7358 | ||
| 7359 | Return true iff we received input from any process. */ | 7359 | Return true if we received input from any process. */ |
| 7360 | 7360 | ||
| 7361 | int | 7361 | int |
| 7362 | wait_reading_process_output (time_limit, microsecs, read_kbd, do_display, | 7362 | wait_reading_process_output (time_limit, microsecs, read_kbd, do_display, |
diff --git a/src/process.h b/src/process.h index 79875564766..eaed95fe4b7 100644 --- a/src/process.h +++ b/src/process.h | |||
| @@ -138,7 +138,7 @@ extern Lisp_Object chan_process[]; | |||
| 138 | /* Alist of elements (NAME . PROCESS). */ | 138 | /* Alist of elements (NAME . PROCESS). */ |
| 139 | extern Lisp_Object Vprocess_alist; | 139 | extern Lisp_Object Vprocess_alist; |
| 140 | 140 | ||
| 141 | /* True iff we are about to fork off a synchronous process or if we | 141 | /* True if we are about to fork off a synchronous process or if we |
| 142 | are waiting for it. */ | 142 | are waiting for it. */ |
| 143 | extern int synch_process_alive; | 143 | extern int synch_process_alive; |
| 144 | 144 | ||
diff --git a/src/regex.c b/src/regex.c index 64bfef15c4e..66b84c9dfc2 100644 --- a/src/regex.c +++ b/src/regex.c | |||
| @@ -2048,7 +2048,7 @@ re_wctype (str) | |||
| 2048 | else return 0; | 2048 | else return 0; |
| 2049 | } | 2049 | } |
| 2050 | 2050 | ||
| 2051 | /* True iff CH is in the char class CC. */ | 2051 | /* True if CH is in the char class CC. */ |
| 2052 | boolean | 2052 | boolean |
| 2053 | re_iswctype (ch, cc) | 2053 | re_iswctype (ch, cc) |
| 2054 | int ch; | 2054 | int ch; |
diff --git a/src/search.c b/src/search.c index 4ae3a68b304..d91110f4b0e 100644 --- a/src/search.c +++ b/src/search.c | |||
| @@ -1662,7 +1662,7 @@ simple_search (n, pat, len, len_byte, trt, pos, pos_byte, lim, lim_byte) | |||
| 1662 | have nontrivial translation are the same aside from the last byte. | 1662 | have nontrivial translation are the same aside from the last byte. |
| 1663 | This makes it possible to translate just the last byte of a | 1663 | This makes it possible to translate just the last byte of a |
| 1664 | character, and do so after just a simple test of the context. | 1664 | character, and do so after just a simple test of the context. |
| 1665 | CHARSET_BASE is nonzero iff there is such a non-ASCII character. | 1665 | CHARSET_BASE is nonzero if there is such a non-ASCII character. |
| 1666 | 1666 | ||
| 1667 | If that criterion is not satisfied, do not call this function. */ | 1667 | If that criterion is not satisfied, do not call this function. */ |
| 1668 | 1668 | ||
diff --git a/src/systime.h b/src/systime.h index 85c2799f083..8b1b7f56ad6 100644 --- a/src/systime.h +++ b/src/systime.h | |||
| @@ -67,7 +67,7 @@ extern time_t timezone; | |||
| 67 | EMACS_SECS (TIME) is an rvalue for the seconds component of TIME. | 67 | EMACS_SECS (TIME) is an rvalue for the seconds component of TIME. |
| 68 | EMACS_SET_SECS (TIME, SECONDS) sets that to SECONDS. | 68 | EMACS_SET_SECS (TIME, SECONDS) sets that to SECONDS. |
| 69 | 69 | ||
| 70 | EMACS_HAS_USECS is defined iff EMACS_TIME has a usecs component. | 70 | EMACS_HAS_USECS is defined if EMACS_TIME has a usecs component. |
| 71 | EMACS_USECS (TIME) is an rvalue for the microseconds component of TIME. | 71 | EMACS_USECS (TIME) is an rvalue for the microseconds component of TIME. |
| 72 | This returns zero if EMACS_TIME doesn't have a microseconds component. | 72 | This returns zero if EMACS_TIME doesn't have a microseconds component. |
| 73 | EMACS_SET_USECS (TIME, MICROSECONDS) sets that to MICROSECONDS. | 73 | EMACS_SET_USECS (TIME, MICROSECONDS) sets that to MICROSECONDS. |
| @@ -83,7 +83,7 @@ extern time_t timezone; | |||
| 83 | 83 | ||
| 84 | EMACS_SUB_TIME (DEST, SRC1, SRC2) subtracts SRC2 from SRC1 and | 84 | EMACS_SUB_TIME (DEST, SRC1, SRC2) subtracts SRC2 from SRC1 and |
| 85 | stores the result in DEST. SRC should not be negative. | 85 | stores the result in DEST. SRC should not be negative. |
| 86 | EMACS_TIME_NEG_P (TIME) is true iff TIME is negative. | 86 | EMACS_TIME_NEG_P (TIME) is true if TIME is negative. |
| 87 | 87 | ||
| 88 | */ | 88 | */ |
| 89 | 89 | ||
diff --git a/src/systty.h b/src/systty.h index 15dd7a4e26c..c89edfc8d93 100644 --- a/src/systty.h +++ b/src/systty.h | |||
| @@ -297,7 +297,7 @@ static struct sensemode { | |||
| 297 | written before making the change. | 297 | written before making the change. |
| 298 | Return 0 if all went well, and -1 if anything failed. | 298 | Return 0 if all went well, and -1 if anything failed. |
| 299 | 299 | ||
| 300 | EMACS_TTY_TABS_OK (struct emacs_tty *P) is false iff the kernel | 300 | EMACS_TTY_TABS_OK (struct emacs_tty *P) is false if the kernel |
| 301 | expands tabs to spaces upon output; in that case, there is no | 301 | expands tabs to spaces upon output; in that case, there is no |
| 302 | advantage to using tabs over spaces. */ | 302 | advantage to using tabs over spaces. */ |
| 303 | 303 | ||
diff --git a/src/termhooks.h b/src/termhooks.h index 889c3ab1ab7..eb074608e19 100644 --- a/src/termhooks.h +++ b/src/termhooks.h | |||
| @@ -201,7 +201,7 @@ extern void (*judge_scroll_bars_hook) P_ ((struct frame *FRAME)); | |||
| 201 | /* Input queue declarations and hooks. */ | 201 | /* Input queue declarations and hooks. */ |
| 202 | 202 | ||
| 203 | /* Expedient hack: only provide the below definitions to files that | 203 | /* Expedient hack: only provide the below definitions to files that |
| 204 | are prepared to handle lispy things. CONSP is defined iff lisp.h | 204 | are prepared to handle lispy things. CONSP is defined if lisp.h |
| 205 | has been included before this file. */ | 205 | has been included before this file. */ |
| 206 | #ifdef CONSP | 206 | #ifdef CONSP |
| 207 | 207 | ||
diff --git a/src/textprop.c b/src/textprop.c index 711ee571af6..8ce5656e5a2 100644 --- a/src/textprop.c +++ b/src/textprop.c | |||
| @@ -1633,8 +1633,8 @@ Return t if any property was actually removed, nil otherwise. */) | |||
| 1633 | The flag `modified' records if changes have been made. | 1633 | The flag `modified' records if changes have been made. |
| 1634 | When object is a buffer, we must call modify_region before changes are | 1634 | When object is a buffer, we must call modify_region before changes are |
| 1635 | made and signal_after_change when we are done. | 1635 | made and signal_after_change when we are done. |
| 1636 | We call modify_region before calling remove_properties iff modified == 0, | 1636 | We call modify_region before calling remove_properties if modified == 0, |
| 1637 | and we call signal_after_change before returning iff modified != 0. */ | 1637 | and we call signal_after_change before returning if modified != 0. */ |
| 1638 | for (;;) | 1638 | for (;;) |
| 1639 | { | 1639 | { |
| 1640 | if (i == 0) | 1640 | if (i == 0) |
diff --git a/src/w32term.c b/src/w32term.c index 3cf9b839559..6f97426d499 100644 --- a/src/w32term.c +++ b/src/w32term.c | |||
| @@ -4401,7 +4401,7 @@ w32_read_socket (sd, expected, hold_quit) | |||
| 4401 | /* Window will be selected only when it is not | 4401 | /* Window will be selected only when it is not |
| 4402 | selected now and last mouse movement event was | 4402 | selected now and last mouse movement event was |
| 4403 | not in it. Minibuffer window will be selected | 4403 | not in it. Minibuffer window will be selected |
| 4404 | iff it is active. */ | 4404 | only when it is active. */ |
| 4405 | if (WINDOWP(window) | 4405 | if (WINDOWP(window) |
| 4406 | && !EQ (window, last_window) | 4406 | && !EQ (window, last_window) |
| 4407 | && !EQ (window, selected_window)) | 4407 | && !EQ (window, selected_window)) |
diff --git a/src/w32term.h b/src/w32term.h index d809992b8ff..b73dcfc9ee2 100644 --- a/src/w32term.h +++ b/src/w32term.h | |||
| @@ -198,7 +198,7 @@ struct w32_display_info | |||
| 198 | char *w32_id_name; | 198 | char *w32_id_name; |
| 199 | 199 | ||
| 200 | /* The number of fonts actually stored in w32_font_table. | 200 | /* The number of fonts actually stored in w32_font_table. |
| 201 | font_table[n] is used and valid iff 0 <= n < n_fonts. 0 <= | 201 | font_table[n] is used and valid if 0 <= n < n_fonts. 0 <= |
| 202 | n_fonts <= font_table_size. and font_table[i].name != 0. */ | 202 | n_fonts <= font_table_size. and font_table[i].name != 0. */ |
| 203 | int n_fonts; | 203 | int n_fonts; |
| 204 | 204 | ||
diff --git a/src/window.c b/src/window.c index f1c3a6e49f2..6fe78166ba1 100644 --- a/src/window.c +++ b/src/window.c | |||
| @@ -557,6 +557,15 @@ use (let ((edges (window-edges))) (- (nth 2 edges) (nth 0 edges))). */) | |||
| 557 | return make_number (window_box_text_cols (decode_any_window (window))); | 557 | return make_number (window_box_text_cols (decode_any_window (window))); |
| 558 | } | 558 | } |
| 559 | 559 | ||
| 560 | DEFUN ("window-full-width-p", Fwindow_full_width_p, Swindow_full_width_p, 0, 1, 0, | ||
| 561 | doc: /* Return t if WINDOW is as wide as its frame. | ||
| 562 | WINDOW defaults to the selected window. */) | ||
| 563 | (window) | ||
| 564 | Lisp_Object window; | ||
| 565 | { | ||
| 566 | return WINDOW_FULL_WIDTH_P (decode_any_window (window)) ? Qt : Qnil; | ||
| 567 | } | ||
| 568 | |||
| 560 | DEFUN ("window-hscroll", Fwindow_hscroll, Swindow_hscroll, 0, 1, 0, | 569 | DEFUN ("window-hscroll", Fwindow_hscroll, Swindow_hscroll, 0, 1, 0, |
| 561 | doc: /* Return the number of columns by which WINDOW is scrolled from left margin. | 570 | doc: /* Return the number of columns by which WINDOW is scrolled from left margin. |
| 562 | WINDOW defaults to the selected window. */) | 571 | WINDOW defaults to the selected window. */) |
| @@ -7515,6 +7524,7 @@ The selected frame is the one whose configuration has changed. */); | |||
| 7515 | defsubr (&Swindow_buffer); | 7524 | defsubr (&Swindow_buffer); |
| 7516 | defsubr (&Swindow_height); | 7525 | defsubr (&Swindow_height); |
| 7517 | defsubr (&Swindow_width); | 7526 | defsubr (&Swindow_width); |
| 7527 | defsubr (&Swindow_full_width_p); | ||
| 7518 | defsubr (&Swindow_hscroll); | 7528 | defsubr (&Swindow_hscroll); |
| 7519 | defsubr (&Sset_window_hscroll); | 7529 | defsubr (&Sset_window_hscroll); |
| 7520 | defsubr (&Swindow_redisplay_end_trigger); | 7530 | defsubr (&Swindow_redisplay_end_trigger); |
diff --git a/src/window.h b/src/window.h index 7fc97448757..ea8965392c4 100644 --- a/src/window.h +++ b/src/window.h | |||
| @@ -777,6 +777,7 @@ extern Lisp_Object window_from_coordinates P_ ((struct frame *, int, int, | |||
| 777 | EXFUN (Fwindow_dedicated_p, 1); | 777 | EXFUN (Fwindow_dedicated_p, 1); |
| 778 | extern int window_height P_ ((Lisp_Object)); | 778 | extern int window_height P_ ((Lisp_Object)); |
| 779 | extern int window_width P_ ((Lisp_Object)); | 779 | extern int window_width P_ ((Lisp_Object)); |
| 780 | EXFUN (Fwindow_full_width_p, 1); | ||
| 780 | extern void set_window_height P_ ((Lisp_Object, int, int)); | 781 | extern void set_window_height P_ ((Lisp_Object, int, int)); |
| 781 | extern void set_window_width P_ ((Lisp_Object, int, int)); | 782 | extern void set_window_width P_ ((Lisp_Object, int, int)); |
| 782 | extern void change_window_heights P_ ((Lisp_Object, int)); | 783 | extern void change_window_heights P_ ((Lisp_Object, int)); |
| @@ -818,7 +819,7 @@ extern int command_loop_level; | |||
| 818 | 819 | ||
| 819 | extern int minibuf_level; | 820 | extern int minibuf_level; |
| 820 | 821 | ||
| 821 | /* true iff we should redraw the mode lines on the next redisplay. */ | 822 | /* true if we should redraw the mode lines on the next redisplay. */ |
| 822 | 823 | ||
| 823 | extern int update_mode_lines; | 824 | extern int update_mode_lines; |
| 824 | 825 | ||
diff --git a/src/xterm.c b/src/xterm.c index 2d9de86a445..a5bb506f035 100644 --- a/src/xterm.c +++ b/src/xterm.c | |||
| @@ -6700,7 +6700,7 @@ handle_one_xevent (dpyinfo, eventp, finish, hold_quit) | |||
| 6700 | 6700 | ||
| 6701 | /* Window will be selected only when it is not selected now and | 6701 | /* Window will be selected only when it is not selected now and |
| 6702 | last mouse movement event was not in it. Minibuffer window | 6702 | last mouse movement event was not in it. Minibuffer window |
| 6703 | will be selected iff it is active. */ | 6703 | will be selected only when it is active. */ |
| 6704 | if (WINDOWP (window) | 6704 | if (WINDOWP (window) |
| 6705 | && !EQ (window, last_window) | 6705 | && !EQ (window, last_window) |
| 6706 | && !EQ (window, selected_window)) | 6706 | && !EQ (window, selected_window)) |
diff --git a/src/xterm.h b/src/xterm.h index 65499d45b0f..edb35c199f4 100644 --- a/src/xterm.h +++ b/src/xterm.h | |||
| @@ -253,7 +253,7 @@ struct x_display_info | |||
| 253 | char *x_id_name; | 253 | char *x_id_name; |
| 254 | 254 | ||
| 255 | /* The number of fonts actually stored in x_font_table. | 255 | /* The number of fonts actually stored in x_font_table. |
| 256 | font_table[n] is used and valid iff 0 <= n < n_fonts. 0 <= | 256 | font_table[n] is used and valid if 0 <= n < n_fonts. 0 <= |
| 257 | n_fonts <= font_table_size and font_table[i].name != 0. */ | 257 | n_fonts <= font_table_size and font_table[i].name != 0. */ |
| 258 | int n_fonts; | 258 | int n_fonts; |
| 259 | 259 | ||