aboutsummaryrefslogtreecommitdiffstats
path: root/src/coding.c
diff options
context:
space:
mode:
authorPaul Eggert2016-03-10 07:34:52 -0800
committerPaul Eggert2016-03-10 07:59:19 -0800
commit7352c6c695db8b90b63c2601277d64a32507d2bb (patch)
tree1dc5f7af755a70f67efe13882099ff4920230571 /src/coding.c
parenta589e9aed5255fb1ebfb38fa4b3c9df5f6ef7448 (diff)
downloademacs-7352c6c695db8b90b63c2601277d64a32507d2bb.tar.gz
emacs-7352c6c695db8b90b63c2601277d64a32507d2bb.zip
Rework C source files to avoid ^(
Work around Bug#22884 by rewording comments and strings to avoid ‘(’ at the start of a line unless it starts a function. This change is a short-term hack; in the longer run we plan to fix cc-mode’s performance for C files that have ‘(’ at the start of a line in a comment or string.
Diffstat (limited to 'src/coding.c')
-rw-r--r--src/coding.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/coding.c b/src/coding.c
index e591bedc3e5..9f709bea24c 100644
--- a/src/coding.c
+++ b/src/coding.c
@@ -12,8 +12,8 @@ This file is part of GNU Emacs.
12 12
13GNU Emacs is free software: you can redistribute it and/or modify 13GNU Emacs is free software: you can redistribute it and/or modify
14it under the terms of the GNU General Public License as published by 14it under the terms of the GNU General Public License as published by
15the Free Software Foundation, either version 3 of the License, or 15the Free Software Foundation, either version 3 of the License, or (at
16(at your option) any later version. 16your option) any later version.
17 17
18GNU Emacs is distributed in the hope that it will be useful, 18GNU Emacs is distributed in the hope that it will be useful,
19but WITHOUT ANY WARRANTY; without even the implied warranty of 19but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -9800,7 +9800,7 @@ DEFUN ("find-operation-coding-system", Ffind_operation_coding_system,
9800 doc: /* Choose a coding system for an operation based on the target name. 9800 doc: /* Choose a coding system for an operation based on the target name.
9801The value names a pair of coding systems: (DECODING-SYSTEM . ENCODING-SYSTEM). 9801The value names a pair of coding systems: (DECODING-SYSTEM . ENCODING-SYSTEM).
9802DECODING-SYSTEM is the coding system to use for decoding 9802DECODING-SYSTEM is the coding system to use for decoding
9803(in case OPERATION does decoding), and ENCODING-SYSTEM is the coding system 9803\(in case OPERATION does decoding), and ENCODING-SYSTEM is the coding system
9804for encoding (in case OPERATION does encoding). 9804for encoding (in case OPERATION does encoding).
9805 9805
9806The first argument OPERATION specifies an I/O primitive: 9806The first argument OPERATION specifies an I/O primitive:
@@ -11175,7 +11175,7 @@ the cdr part is used for encoding a text to be sent to a process. */);
11175Table of extra Latin codes in the range 128..159 (inclusive). 11175Table of extra Latin codes in the range 128..159 (inclusive).
11176This is a vector of length 256. 11176This is a vector of length 256.
11177If Nth element is non-nil, the existence of code N in a file 11177If Nth element is non-nil, the existence of code N in a file
11178(or output of subprocess) doesn't prevent it to be detected as 11178\(or output of subprocess) doesn't prevent it to be detected as
11179a coding system of ISO 2022 variant which has a flag 11179a coding system of ISO 2022 variant which has a flag
11180`accept-latin-extra-code' t (e.g. iso-latin-1) on reading a file 11180`accept-latin-extra-code' t (e.g. iso-latin-1) on reading a file
11181or reading output of a subprocess. 11181or reading output of a subprocess.