aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * process.c: conform to C89 pointer rulesPaul Eggert2011-02-061-0/+2
|
* * lread.c: conform to C89 pointer rulesPaul Eggert2011-02-061-0/+1
|
* * fns.c: conform to C89 pointer rulesPaul Eggert2011-02-061-0/+4
|
* * callint.c: conform to C89 pointer rulesPaul Eggert2011-02-061-0/+1
|
* * editfns.c: conform to C89 pointer rulesPaul Eggert2011-02-061-0/+3
|
* * print.c: conform to C89 pointer rulesPaul Eggert2011-02-061-1/+2
|
* * data.c etc: conform to C89 pointer rulesPaul Eggert2011-02-061-0/+2
|
* * alloc.c: conform to C89 pointer rulesPaul Eggert2011-02-061-0/+2
|
* * search.c: conform to C89 pointer rulesPaul Eggert2011-02-061-0/+1
|
* * casefiddle.c: conform to C89 pointer rulesPaul Eggert2011-02-061-0/+1
|
* * dired.c: conform to C89 pointer rulesPaul Eggert2011-02-061-0/+8
|
* * fileio.c: conform to C89 pointer rulesPaul Eggert2011-02-061-0/+9
|
* * minibuf.c: conform to C89 pointer rulesPaul Eggert2011-02-061-0/+1
|
* * keymap.c: conform to C89 pointer rulesPaul Eggert2011-02-061-0/+4
|
* * insdel.c: conform to C89 pointer rulesPaul Eggert2011-02-061-0/+7
|
* * keyboard.c: conform to C89 pointer rulesPaul Eggert2011-02-061-0/+2
|
* * image.c: conform to C89 pointer rulesPaul Eggert2011-02-061-0/+1
|
* * xfns.c: conform to C89 pointer rulesPaul Eggert2011-02-051-0/+2
|
* * xterm.c (x_alloc_nearest_color_1): Avoid unportable int assumption.Paul Eggert2011-02-051-0/+4
| | | | | Emacs assumes two's complement elsewhere, but the assumption is easy to remove here, and this suppresses a warning with Sun C 5.8.
* * xterm.c: conform to C89 pointer rulesPaul Eggert2011-02-051-2/+6
|
* * doc.c: conform to C89 pointer rulesPaul Eggert2011-02-051-0/+7
| | | | | | (get_doc_string, Fsnarf_documentation, Fsubstitute_command_keys): Change types between char * and unsigned char *, to satisfy C89 rules about pointer type compatibility.
* don't ignore chdir failurePaul Eggert2011-02-051-0/+11
| | | | | | | | | | * sysdep.c (sys_subshell) [!defined DOS_NT]: Diagnose chdir failure and exit. (sys_subshell) [defined DOS_NT]: Mark with a FIXME the two remaining unchecked chdir calls in this function; some DOS/NT expert needs to fix them. * emacs.c (main): Mark with a FIXME the unchecked chdir calls in this function; some NextStep expert needs to fix them.
* Merge from emacs-23; up to 2010-05-26T14:19:15Z!monnier@iro.umontreal.ca.Glenn Morris2011-02-051-0/+20
|\
| * Doc fixes related to face heights. (Bug#2659)Glenn Morris2011-02-021-0/+5
| | | | | | | | | | | | | | * lisp/faces.el (set-face-attribute): Doc fix. * src/xfaces.c (Finternal_set_lisp_face_attribute): Try to clarify some error messages.
| * * src/editfns.c (save_restriction_restore): Don't forget to invalidate theStefan Monnier2011-02-021-0/+5
| | | | | | | | | | | | current_column cache. Fixes: debbugs:7946
| * merge emacs-23Kenichi Handa2011-02-021-0/+4
| |\
| | * * src/window.c (Fselect_window): Add missing return value.Andreas Schwab2011-02-011-0/+4
| | |
| * | Use FC_DUAL only when it is defined.Kenichi Handa2011-02-021-0/+6
| |/
* | xstrcasecmp: conform to C89 pointer rulesPaul Eggert2011-02-051-0/+5
| |
* | * charset.c: conform to C89 pointer rulesPaul Eggert2011-02-051-0/+3
| | | | | | | | (define_charset_internal): Switch between char * and unsigned char *.
* | * xmenu.c: conform to C89 const rulesPaul Eggert2011-02-051-0/+4
| | | | | | | | | | (xmenu_show, xdialog_show): Declare local var as char *, not const char *, to stay compatible with C89 const rules.
* | * xdisp.c: conform to C89 pointer rulesPaul Eggert2011-02-051-0/+8
| | | | | | | | | | | | | | | | | | (store_mode_line_noprop, display_string, reseat_to_string): (c_string_pos, number_of_chars, message_dolog): (message_log_check_duplicate, set_message_1, store_mode_line_noprop): (display_mode_element, display_string): Switch between char * and unsigned char * to stay compatible wth C89 pointer rules.
* | * regex.c: conform to C89 pointer rulesPaul Eggert2011-02-041-0/+5
| |
* | sync from gnulib to remove HAVE_STDBOOL_HPaul Eggert2011-02-041-0/+5
| |
* | Update dependencies in src/makefile.w32-in.Eli Zaretskii2011-02-041-2/+8
| | | | | | | | | | | | | | | | | | makefile.w32-in (LISP_H, PROCESS_H): New variables. Replace all uses of lisp.h with $(LISP_H), and all uses of process.h with $(PROCESS_H). ($(BLD)/editfns.$(O)): Depend on ../lib/strftime.h. ($(BLD)/print.$(O)): Depend on ../lib/ftoastr.h and ../lib/intprops.h. ($(BLD)/sysdep.$(O)): Depend on ../lib/ignore-value.h.
* | deps.mk: Update for recent changes: gnutls, gnulib imports, globals.h.Eli Zaretskii2011-02-041-0/+3
| |
* | Adapt to addition of ignore-value.h in 2011-02-03T19:29:35Z!eggert@cs.ucla.edu.Eli Zaretskii2011-02-041-0/+5
| | | | | | | | | | | | src/makefile.w32-in (IGNORE_VALUE_H): New variable. ($(BLD)/sysdep.$(O)): Depend on $(IGNORE_VALUE_H). nt/config.nt (inline) [__GNUC__]: Define (for gnulib).
* | allow C code to suppress warnings about ignored return valuesPaul Eggert2011-02-031-0/+13
| |
* | * xterm.c (x_connection_closed): Remove all calls that calls XSync.Jan Djärv2011-02-031-0/+5
| | | | | | | | Fixes: debbugs:7949
* | Fix a compiler warning in image.c.Eli Zaretskii2011-02-011-0/+5
| | | | | | | | image.c (tiff_load): Avoid compiler warning in 2nd arg to TIFFClientOpen.
* | Use add/delete_read_fd in xsmfns to simplify. Also restart with initial_argv.Jan Djärv2011-02-011-0/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * xsmfns.c (ice_connection_closed): Call delete_read_fd. (x_session_check_input): Change args and return type so it can be used as argument to add_read_fd. Make static. Remove call to select. Call kbd_buffer_store_event for emacs_event. (smc_save_yourself_CB): Also store initial argv to SmRestartCommand. (ice_conn_watch_CB): Call add_read_fd. * xterm.c (XTread_socket): Remove HAVE_X_SM block with call to x_session_check_input. (x_session_initialized): Remove definition. (x_initialize): Remove setting of x_session_initialized. * xterm.h (x_session_check_input): Remove declaration.
* | format-time-string now supports subsecond time stamp resolutionPaul Eggert2011-01-311-0/+10
| |
* | Merge changes from emacs-23 branchChong Yidong2011-01-311-0/+15
|\ \ | |/
| * Fix use of pointers to image library functionsAndreas Schwab2011-01-301-0/+7
| | | | | | | | | | | | | | * src/image.c (DEF_IMGLIB_FN): Add parameter rettype, use it instead of int. All uses adjusted. (PNG_JMPBUF, png_load, jpeg_load, tiff_load, gif_load) (svg_load_image): Remove casts.
| * Fix png support to allow compiling with libpng-1.5 (Bug#7908).Chong Yidong2011-01-291-0/+8
| | | | | | | | | | | | | | * image.c (fn_png_longjmp, fn_png_set_longjmp_fn): New png function definitions for compiling with libpng-1.5. (PNG_LONGJMP, PNG_JMPBUF): New macros for libpng-1.5. (my_png_error, png_load): Use them. Suggested by Thomas Klausner.
| * * m/intel386.h: Define NO_ARG_ARRAY. Suggested by Dan Nicolaescu.Chong Yidong2011-01-281-0/+4
| |
| * Fix GTK font name parsing to allow numbers in names (Bug#7853).Chong Yidong2011-01-261-0/+5
| | | | | | | | | | | | | | A better fix is already in the trunk. * src/font.c (font_parse_fcname): Require GTK-style font sizes to occur at the end of the font string (Bug#7853).
| * * src/font.c (font_parse_fcname): Fix typo in string length.Chong Yidong2011-01-261-0/+4
| |
* | Don't define HAVE_STRFTIME on MS-Windows.Eli Zaretskii2011-01-311-0/+2
| | | | | | | | s/ms-w32.h (HAVE_STRFTIME): Don't define.
* | Fix the MS-Windows build broken by 2011-01-30T23:34:18Z!eggert@cs.ucla.edu ↵Eli Zaretskii2011-01-311-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | and 2011-01-31T08:15:13Z!eggert@cs.ucla.edu. lib/makefile.w32-in (GNULIBOBJS): Add $(BLD)/strftime.$(O) and $(BLD)/time_r.$(O). ($(BLD)/dtoastr.$(O)): Depend on $(EMACS_ROOT)/src/s/ms-w32.h and $(EMACS_ROOT)/src/m/intel386.h. ($(BLD)/strftime.$(O)): ($(BLD)/time_r.$(O)): Define prerequisites. src/makefile.w32-in (OBJ2): Remove strftime.$(O). ($(BLD)/strftime.$(O)): Remove prerequisites. lib-src/makefile.w32-in (VERSION): Don't define, defined on nt/config.nt. (ECLIENT_CFLAGS): Remove -DVERSION. ($(BLD)/emacsclient.$(O)): Don't depend on makefile.w32-in. nt/config.nt (VERSION): Uncomment definition. (restrict): Define. nt/inc/stdbool.h: New file. admin/admin.el (set-version): Remove lib-src/makefile.w32-in. Add nt/config.nt.