mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-22 04:21:24 -08:00
* fileio.c (read_non_regular, read_non_regular_quit): Rename arg.
This commit is contained in:
parent
9a39b306d9
commit
9c8a2331d4
2 changed files with 5 additions and 5 deletions
|
|
@ -1,5 +1,5 @@
|
|||
2010-07-04 Tetsurou Okazaki <okazaki@be.to> (tiny change)
|
||||
Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
* lread.c (read1): Fix up last change to not mess up `c'.
|
||||
|
||||
|
|
@ -13,8 +13,8 @@
|
|||
|
||||
* atimer.c (start_atimer): Use EMACS_TIME, not struct timeval.
|
||||
* dired.c (file_name_completion_stat): Use DIRENTRY, not struct dirent.
|
||||
* fileio.c (read_non_regular, read_non_regular_quit): Pass Lisp_Object,
|
||||
as required by internal_condition_case_1.
|
||||
* fileio.c (read_non_regular, read_non_regular_quit): Add Lisp_Object
|
||||
arg, as required by internal_condition_case_1.
|
||||
* print.c (strout): Use const char* for arg PTR.
|
||||
* regex.c (bcmp_translate): Use RE_TRANSLATE_TYPE, not Lisp_Object.
|
||||
(analyse_first): Fix "const const".
|
||||
|
|
|
|||
|
|
@ -3253,7 +3253,7 @@ static EMACS_INT non_regular_nbytes;
|
|||
Value is the number of bytes read. */
|
||||
|
||||
static Lisp_Object
|
||||
read_non_regular (Lisp_Object ignored)
|
||||
read_non_regular (Lisp_Object ignore)
|
||||
{
|
||||
EMACS_INT nbytes;
|
||||
|
||||
|
|
@ -3271,7 +3271,7 @@ read_non_regular (Lisp_Object ignored)
|
|||
in insert-file-contents. */
|
||||
|
||||
static Lisp_Object
|
||||
read_non_regular_quit (Lisp_Object ignored)
|
||||
read_non_regular_quit (Lisp_Object ignore)
|
||||
{
|
||||
return Qnil;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue