aboutsummaryrefslogtreecommitdiffstats
path: root/src/lread.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Update years in copyright notice; nfc.Thien-Thi Nguyen2006-02-061-1/+1
|
* (openp): Initialized encoded_fn before GCPRO it.Kenichi Handa2006-02-061-1/+1
|
* (Fload): Don't leak the file descriptor returned by openp if we are goingEli Zaretskii2006-01-201-2/+6
| | | | to signal an error.
* (readevalloop): Test for reading a whole bufferRichard M. Stallman2005-12-301-4/+29
| | | | | | before actually reading anything. Handle all cases, including START = END = nil and an already-narrowed buffer. Convert END to a marker if it is a number.
* (readevalloop): Set PT and ZV in the proper buffer, not the current one.Richard M. Stallman2005-12-281-0/+10
|
* (read_escape) <\s>: Don't treat strings specially.Richard M. Stallman2005-12-081-6/+5
|
* (readevalloop): Add missing GCPROs.Stefan Monnier2005-11-161-3/+3
|
* (readevalloop): Yet another int/Lisp_Object mixup (YAILOM).Stefan Monnier2005-11-011-1/+2
|
* (build_load_history): Replace STREAM arg with ENTIRE.Richard M. Stallman2005-10-231-18/+21
| | | | | (readevalloop): Compute ENTIRE properly. (syms_of_lread) <load-history>: Doc fix.
* (Fload): Simplify gcpro structure.Richard M. Stallman2005-10-211-14/+23
| | | | | | | Gcpro FOUND as well as FILE, but not EFOUND. Unless preloading, record FOUND instead of FILE in Vload_history. Rename repeat local FILE to MSG_FILE. (syms_of_lread) <load-history>: Doc fix.
* Update years in copyright notice; nfc.Thien-Thi Nguyen2005-08-071-2/+3
|
* (load_unwind): Rework last change.Kim F. Storm2005-07-201-5/+5
|
* (Fload, load_unwind): Use make_save_value to unwindKim F. Storm2005-07-201-7/+4
| | | | protect stream.
* (syms_of_lread): Initialize seen_list.Kim F. Storm2005-07-141-0/+1
|
* (Qeval_buffer_list, Veval_buffer_list): New vars.Richard M. Stallman2005-07-101-0/+10
| | | | | (syms_of_lread): Set up eval-buffer-list. (Feval_buffer, Feval_region): Bind eval-buffer-list.
* Update FSF's address.Lute Kamstra2005-07-041-2/+2
|
* (read1): 0.0e+NaN should make a "positive" NaN.Richard M. Stallman2005-06-251-0/+17
|
* (read_vector): Follow error conventions.Juanma Barranquero2005-06-231-2/+2
|
* (Flocate_file_internal): Doc fix.Eli Zaretskii2005-05-061-0/+1
|
* (Vloads_in_progress): Static.Lute Kamstra2005-04-181-3/+3
|
* (Vloads_in_progress): Not static.Richard M. Stallman2005-04-101-1/+1
|
* (readevalloop): Add args START and END as region inKim F. Storm2005-04-081-17/+35
| | | | | | | | | | current buffer to read. Callers changed. When specified, narrow to this region only when reading, not during eval. Track next point to read from during eval. Also restore point to "real" buffer position before eval. (Feval_region): Don't save excursion and restriction here, and don't narrow to region. Just pass region to readevalloop. Note: Point is now preserved even when PRINTFLAG is nil.
* (syms_of_lread) <user-init-file>: Doc fix.Richard M. Stallman2005-02-151-2/+2
|
* (syms_of_lread) <load-history>: Doc fix.Richard M. Stallman2004-12-271-3/+3
|
* (readchar): Check QUIT when `getc' is interrupted.Stefan Monnier2004-11-251-2/+3
|
* (oblookup): Don't use XFASTINT blindly.Stefan Monnier2004-11-231-1/+1
|
* (read1): Fix next_char matching.Kim F. Storm2004-11-091-5/+5
|
* (read1): Use BOOL_VECTOR_BITS_PER_CHAR instead of BITS_PER_CHAR forAndreas Schwab2004-04-261-5/+6
| | | | bool vectors.
* lread.c (init_lread): Fixing typo HAVE_CARBON test logicSteven Tamm2004-04-261-2/+2
|
* lread.c (init_lread): Don't display missing lisp directorySteven Tamm2004-04-251-3/+7
| | | | | warnings with Carbon Emacs because self-contained bundled Emacs may be build without correct installation path.
* (defvar_per_buffer): Remove dead declaration.Stefan Monnier2004-01-141-2/+1
|
* Add arch taglinesMiles Bader2003-09-011-0/+3
|
* [HAVE_FCNTL_H]: Include fcntl.h.Dave Love2003-06-021-0/+3
|
* (openp): Make sure STR is a string.Stefan Monnier2003-06-011-0/+2
|
* (Fload): Print a message if package is obsolete.Stefan Monnier2003-05-181-2/+7
|
* (read1): Before calling index, check if the 2ndKenichi Handa2003-04-091-12/+16
| | | | arguemnt is in ASCII range.
* (openp): Get the Qfile_exists_p handler for STRING, not FN.Richard M. Stallman2003-04-081-1/+1
|
* (read1): After #!, exit loop on eof.Richard M. Stallman2003-03-141-1/+1
|
* (read1): Accept `single space' syntax like (? x).Kim F. Storm2003-02-251-0/+7
|
* 2003-02-22 David Ponce <david@dponce.com>Juanma Barranquero2003-02-221-1/+1
| | | | (Fload): Don't check STRING_MULTIBYTE.
* (read1): Allow "?" after a character constant.Kim F. Storm2003-02-181-1/+1
|
* (read1): Fix last change; "`" is not always special.Kim F. Storm2003-02-181-4/+8
|
* (read1): Fix and relax read syntax.Kim F. Storm2003-02-171-12/+25
| | | | | | | | Recognize "[", ";", "#", and "?" after a dotted-pair dot. Only recognize "," after dotted-pair dot if inside backquote. Never include "`" or "," (inside backquote) in a symbol. Allow dotted-pair dot after a character constant. Allow "`" and "," (inside backquote) after a character constant.
* (read_escape): Interpret \s as a SPACE character, exceptKim F. Storm2003-02-131-2/+16
| | | | | | for \s-X in a character constant which still is the super modifier. (read1): Signal an `invalid read syntax' error if a character constant is immediately followed by a digit or symbol character.
* Trailing whitespace deleted.Juanma Barranquero2003-02-041-31/+31
|
* (load_error_handler): New function.Richard M. Stallman2002-12-211-4/+20
| | | | | (Fload): Handle errors in Fsubstitute_in_file_name. Don't expect Fsignal to return.
* (syms_of_lread) <load-history>: Doc fix.Richard M. Stallman2002-12-071-1/+4
|
* (Feval_buffer): Doc fix.John Paul Wallington2002-11-041-1/+1
|
* (Fload) <!load_dangerous_libraries>: Close fd.Dave Love2002-10-301-2/+6
|
* (syms_of_lread): Fix typos.Juanma Barranquero2002-10-171-2/+2
|