1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-10 05:30:45 -08:00

2003-02-22 David Ponce <david@dponce.com>

(Fload): Don't check STRING_MULTIBYTE.
This commit is contained in:
Juanma Barranquero 2003-02-22 18:24:48 +00:00
parent 3b41b693d7
commit c33ef7c46f
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2003-02-22 David Ponce <david@dponce.com>
* lread.c (Fload): Don't check STRING_MULTIBYTE.
2003-02-21 Jan Dj,Ad(Brv <jan.h.d@swipnet.se>
* process.h: Removed subtty field from struct Lisp_Process.

View file

@ -844,7 +844,7 @@ Return t if file exists. */)
Lisp_Object file;
file = Fsubstring (found, make_number (0), make_number (-1));
message_with_string ("Source file `%s' newer than byte-compiled file",
file, STRING_MULTIBYTE (file));
file, 1);
}
}
}