| Commit message (Expand) | Author | Age | Files | Lines |
* | * fileio.c (barf_or_query_if_file_exists): Use S_ISDIR. | Paul Eggert | 2011-07-04 | 1 | -1/+1 |
* | (barf_or_query_if_file_exists): Make the "File is a directory" | Lars Magne Ingebrigtsen | 2011-07-04 | 1 | -1/+1 |
* | * fileio.c (barf_or_query_if_file_exists): Check first if the file | Lars Magne Ingebrigtsen | 2011-07-04 | 1 | -0/+4 |
* | Move DEFSYM to lisp.h and use everywhere. | Juanma Barranquero | 2011-06-24 | 1 | -102/+51 |
* | * fileio.c: Fix some integer overflow issues. | Paul Eggert | 2011-06-19 | 1 | -18/+17 |
* | Improve buffer-overflow checking. | Paul Eggert | 2011-06-16 | 1 | -10/+1 |
* | * insdel.c, lisp.h (buffer_overflow): New function. | Paul Eggert | 2011-06-15 | 1 | -2/+2 |
* | * fileio.c (emacs_lseek): Work around GCC bug 43772. | Paul Eggert | 2011-06-15 | 1 | -1/+3 |
* | * fileio.c: Don't assume EMACS_INT fits in off_t. | Paul Eggert | 2011-06-14 | 1 | -8/+21 |
* | * fileio.c (make_temp_name): Omit unnecessary cast to unsigned. | Paul Eggert | 2011-06-12 | 1 | -1/+1 |
* | Check for overflow when converting integer to cons and back. | Paul Eggert | 2011-06-06 | 1 | -1/+1 |
* | Check for buffer and string overflow more precisely. | Paul Eggert | 2011-06-05 | 1 | -1/+1 |
* | * fileio.c (Fverify_visited_file_modtime): Avoid time overflow | Paul Eggert | 2011-06-05 | 1 | -1/+1 |
* | Don't assume time_t can fit into int. | Paul Eggert | 2011-06-01 | 1 | -1/+1 |
* | Lift the MOST_POSITIVE_FIXNUM/4 limitation on visited files (bug#8528). | Eli Zaretskii | 2011-04-29 | 1 | -8/+3 |
* | Fix merge typo. | Paul Eggert | 2011-04-14 | 1 | -1/+0 |
* | Merge from mainline. | Paul Eggert | 2011-04-14 | 1 | -12/+15 |
|\ |
|
| * | * fileio.c (Finsert_file_contents): Fix typo in 2005-05-13 change. (Bug#8496) | Andreas Schwab | 2011-04-14 | 1 | -1/+1 |
| * | Fix write-region and its subroutines for buffers > 2GB. | Eli Zaretskii | 2011-04-10 | 1 | -9/+14 |
* | | * lisp.h (INFUN): Remove. Suggested by Dan Nicolaescu in | Paul Eggert | 2011-04-14 | 1 | -1/+1 |
* | | * fileio.c: Add FIXMES mentioning Bug#8496. | Paul Eggert | 2011-04-13 | 1 | -0/+3 |
* | | Undo the DEFUN->DEFUE change. | Paul Eggert | 2011-04-13 | 1 | -17/+17 |
* | | * fileio.c: Make symbols static if they're not exported. | Paul Eggert | 2011-04-13 | 1 | -4/+4 |
* | | Declare Lisp_Object Q* variables to be 'static' if not exproted. | Paul Eggert | 2011-04-10 | 1 | -41/+42 |
* | | Make Emacs functions such as Fatom 'static' by default. | Paul Eggert | 2011-04-10 | 1 | -17/+20 |
|/ |
|
* | Replace some uses of `int' with EMACS_INT. | Eli Zaretskii | 2011-04-09 | 1 | -1/+1 |
* | * fileio.c (Finsert_file_contents): Make EOF condition clearer. | Paul Eggert | 2011-04-02 | 1 | -7/+3 |
* | * fileio.c (Finsert_file_contents): Remove unnecessary code checking fd. | Paul Eggert | 2011-04-02 | 1 | -1/+0 |
* | * fileio.c (Finsert_file_contents): Avoid signed integer overflow. | Paul Eggert | 2011-04-02 | 1 | -15/+10 |
* | Replace two copies of readlink code with single gnulib version. | Paul Eggert | 2011-03-31 | 1 | -29/+7 |
* | src/fileio.c: Move computation of encoded_absname inside `if'. | Juanma Barranquero | 2011-03-25 | 1 | -2/+1 |
* | nt/*.c, src/*.c: Remove unused variables. | Juanma Barranquero | 2011-03-25 | 1 | -5/+4 |
* | Use Frun_hooks rather than calling Vrun_hooks manually | Julien Danjou | 2011-03-23 | 1 | -3/+3 |
* | * fileio.c (Fcopy_file): Report error if fchown or fchmod fail. | Paul Eggert | 2011-03-20 | 1 | -3/+4 |
* | Use functions, not macros, for up- and down-casing. | Paul Eggert | 2011-03-15 | 1 | -1/+1 |
* | * fileio.c: (Fset_file_times, Finsert_file_contents, auto_save_error): | Paul Eggert | 2011-03-14 | 1 | -19/+20 |
* | * fileio.c (Ffile_selinux_context, Fset_file_selinux_context): Fix pointer | Paul Eggert | 2011-03-14 | 1 | -7/+8 |
* | * fileio.c (Fmake_directory_internal, Fread_file_name): Remove unused vars. | Paul Eggert | 2011-03-14 | 1 | -2/+1 |
* | * fileio.c (file_name_as_directory): Use const pointers when appropriate. | Paul Eggert | 2011-03-14 | 1 | -18/+22 |
* | * fileio.c (file_name_as_directory, directory_file_name): | Paul Eggert | 2011-03-14 | 1 | -5/+5 |
* | * fileio.c (Fmake_symbolic_link): Treat ENOSYS specially, and | Paul Eggert | 2011-02-25 | 1 | -0/+6 |
* | [ChangeLog] | Paul Eggert | 2011-02-22 | 1 | -28/+7 |
* | [ChangeLog] | Paul Eggert | 2011-02-21 | 1 | -28/+7 |
* | Use KVAR in MS-Windows build, remove buffer-file-type. | Eli Zaretskii | 2011-02-16 | 1 | -26/+2 |
* | Change B_ to BVAR | Tom Tromey | 2011-02-16 | 1 | -89/+89 |
* | Fix the MS-Windows build due to introduction of B_. | Eli Zaretskii | 2011-02-14 | 1 | -2/+2 |
* | Hide implementation of `struct buffer' | Tom Tromey | 2011-02-14 | 1 | -87/+87 |
* | * fileio.c: conform to C89 pointer rules | Paul Eggert | 2011-02-06 | 1 | -72/+78 |
* | * insdel.c: conform to C89 pointer rules | Paul Eggert | 2011-02-06 | 1 | -1/+1 |
* | Use SSDATA when the context wants char *. | Paul Eggert | 2011-01-30 | 1 | -45/+45 |