aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJuanma Barranquero2009-09-05 00:45:08 +0000
committerJuanma Barranquero2009-09-05 00:45:08 +0000
commit9735b9ce6fcdc1bcad88b8884bc8c9eab9fd1622 (patch)
tree52adeb668549f23953127974271e9ea203c692b6 /src
parent73d854cdd53f391afeef974862a27d5fe77338da (diff)
downloademacs-9735b9ce6fcdc1bcad88b8884bc8c9eab9fd1622.tar.gz
emacs-9735b9ce6fcdc1bcad88b8884bc8c9eab9fd1622.zip
Fix whitespace.
Diffstat (limited to 'src')
-rw-r--r--src/lread.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/lread.c b/src/lread.c
index ee4659ffd47..10bc4ad3c5e 100644
--- a/src/lread.c
+++ b/src/lread.c
@@ -2042,7 +2042,7 @@ read_escape (readcharfun, stringp)
2042 int stringp; 2042 int stringp;
2043{ 2043{
2044 register int c = READCHAR; 2044 register int c = READCHAR;
2045 /* \u allows up to four hex digits, \U up to eight. Default to the 2045 /* \u allows up to four hex digits, \U up to eight. Default to the
2046 behavior for \u, and change this value in the case that \U is seen. */ 2046 behavior for \u, and change this value in the case that \U is seen. */
2047 int unicode_hex_count = 4; 2047 int unicode_hex_count = 4;
2048 2048
@@ -2216,7 +2216,7 @@ read_escape (readcharfun, stringp)
2216 unicode_hex_count = 8; 2216 unicode_hex_count = 8;
2217 case 'u': 2217 case 'u':
2218 2218
2219 /* A Unicode escape. We only permit them in strings and characters, 2219 /* A Unicode escape. We only permit them in strings and characters,
2220 not arbitrarily in the source code, as in some other languages. */ 2220 not arbitrarily in the source code, as in some other languages. */
2221 { 2221 {
2222 unsigned int i = 0; 2222 unsigned int i = 0;
@@ -2369,15 +2369,15 @@ read1 (readcharfun, pch, first_in_list)
2369 Lisp_Object val = Qnil; 2369 Lisp_Object val = Qnil;
2370 /* The size is 2 * number of allowed keywords to 2370 /* The size is 2 * number of allowed keywords to
2371 make-hash-table. */ 2371 make-hash-table. */
2372 Lisp_Object params[10]; 2372 Lisp_Object params[10];
2373 Lisp_Object ht; 2373 Lisp_Object ht;
2374 Lisp_Object key = Qnil; 2374 Lisp_Object key = Qnil;
2375 int param_count = 0; 2375 int param_count = 0;
2376 2376
2377 if (!EQ (head, Qhash_table)) 2377 if (!EQ (head, Qhash_table))
2378 error ("Invalid extended read marker at head of #s list " 2378 error ("Invalid extended read marker at head of #s list "
2379 "(only hash-table allowed)"); 2379 "(only hash-table allowed)");
2380 2380
2381 tmp = CDR_SAFE (tmp); 2381 tmp = CDR_SAFE (tmp);
2382 2382
2383 /* This is repetitive but fast and simple. */ 2383 /* This is repetitive but fast and simple. */
@@ -2411,7 +2411,7 @@ read1 (readcharfun, pch, first_in_list)
2411 2411
2412 /* Now use params to make a new hashtable and fill it. */ 2412 /* Now use params to make a new hashtable and fill it. */
2413 ht = Fmake_hash_table (param_count, params); 2413 ht = Fmake_hash_table (param_count, params);
2414 2414
2415 while (CONSP (data)) 2415 while (CONSP (data))
2416 { 2416 {
2417 key = XCAR (data); 2417 key = XCAR (data);
@@ -2422,7 +2422,7 @@ read1 (readcharfun, pch, first_in_list)
2422 data = XCDR (data); 2422 data = XCDR (data);
2423 Fputhash (key, val, ht); 2423 Fputhash (key, val, ht);
2424 } 2424 }
2425 2425
2426 return ht; 2426 return ht;
2427 } 2427 }
2428 } 2428 }
@@ -2652,7 +2652,7 @@ read1 (readcharfun, pch, first_in_list)
2652 Lisp_Object placeholder; 2652 Lisp_Object placeholder;
2653 Lisp_Object cell; 2653 Lisp_Object cell;
2654 2654
2655 placeholder = Fcons(Qnil, Qnil); 2655 placeholder = Fcons (Qnil, Qnil);
2656 cell = Fcons (make_number (n), placeholder); 2656 cell = Fcons (make_number (n), placeholder);
2657 read_objects = Fcons (cell, read_objects); 2657 read_objects = Fcons (cell, read_objects);
2658 2658
@@ -3239,7 +3239,7 @@ substitute_in_interval (interval, arg)
3239 Lisp_Object object = Fcar (arg); 3239 Lisp_Object object = Fcar (arg);
3240 Lisp_Object placeholder = Fcdr (arg); 3240 Lisp_Object placeholder = Fcdr (arg);
3241 3241
3242 SUBSTITUTE(interval->plist, interval->plist = true_value); 3242 SUBSTITUTE (interval->plist, interval->plist = true_value);
3243} 3243}
3244 3244
3245 3245
@@ -4180,7 +4180,7 @@ init_lread ()
4180 } 4180 }
4181#endif 4181#endif
4182 4182
4183#if (!(defined(WINDOWSNT) || (defined(HAVE_NS)))) 4183#if (!(defined (WINDOWSNT) || (defined (HAVE_NS))))
4184 /* When Emacs is invoked over network shares on NT, PATH_LOADSEARCH is 4184 /* When Emacs is invoked over network shares on NT, PATH_LOADSEARCH is
4185 almost never correct, thereby causing a warning to be printed out that 4185 almost never correct, thereby causing a warning to be printed out that
4186 confuses users. Since PATH_LOADSEARCH is always overridden by the 4186 confuses users. Since PATH_LOADSEARCH is always overridden by the