aboutsummaryrefslogtreecommitdiffstats
path: root/src/fileio.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/fileio.c')
-rw-r--r--src/fileio.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fileio.c b/src/fileio.c
index c81dc6705c7..0f80d572794 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -3248,12 +3248,12 @@ static EMACS_INT non_regular_nbytes;
3248 3248
3249 3249
3250/* Read from a non-regular file. 3250/* Read from a non-regular file.
3251 Read non_regular_trytry 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
3255static Lisp_Object 3255static Lisp_Object
3256read_non_regular (void) 3256read_non_regular (Lisp_Object ignored)
3257{ 3257{
3258 EMACS_INT nbytes; 3258 EMACS_INT nbytes;
3259 3259
@@ -3271,7 +3271,7 @@ read_non_regular (void)
3271 in insert-file-contents. */ 3271 in insert-file-contents. */
3272 3272
3273static Lisp_Object 3273static Lisp_Object
3274read_non_regular_quit (void) 3274read_non_regular_quit (Lisp_Object ignored)
3275{ 3275{
3276 return Qnil; 3276 return Qnil;
3277} 3277}