comparison src/fileio.c @ 109138:b2c0bf061382

* fileio.c (read_non_regular, read_non_regular_quit): Rename arg.
author Juanma Barranquero <lekktu@gmail.com>
date Mon, 05 Jul 2010 00:26:11 +0200
parents 907fcf8bd2ef
children c25c24812fb1
comparison
equal deleted inserted replaced
109137:14077aaa95b4 109138:b2c0bf061382
3251 Read non_regular_nbytes bytes max from non_regular_fd. 3251 Read non_regular_nbytes bytes max from non_regular_fd.
3252 Non_regular_inserted specifies where to put the read bytes. 3252 Non_regular_inserted specifies where to put the read bytes.
3253 Value is the number of bytes read. */ 3253 Value is the number of bytes read. */
3254 3254
3255 static Lisp_Object 3255 static Lisp_Object
3256 read_non_regular (Lisp_Object ignored) 3256 read_non_regular (Lisp_Object ignore)
3257 { 3257 {
3258 EMACS_INT nbytes; 3258 EMACS_INT nbytes;
3259 3259
3260 immediate_quit = 1; 3260 immediate_quit = 1;
3261 QUIT; 3261 QUIT;
3269 3269
3270 /* Condition-case handler used when reading from non-regular files 3270 /* Condition-case handler used when reading from non-regular files
3271 in insert-file-contents. */ 3271 in insert-file-contents. */
3272 3272
3273 static Lisp_Object 3273 static Lisp_Object
3274 read_non_regular_quit (Lisp_Object ignored) 3274 read_non_regular_quit (Lisp_Object ignore)
3275 { 3275 {
3276 return Qnil; 3276 return Qnil;
3277 } 3277 }
3278 3278
3279 3279