aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog (follow)
Commit message (Collapse)AuthorAgeFilesLines
* src/window.c (Fwindow_body_width): Doc fix. (Bug#19395)Eli Zaretskii2014-12-181-0/+4
|
* * lisp/subr.el (sit-for): Tweak docstring.Stefan Monnier2014-12-151-8/+12
| | | | | | | | Fixes: debbugs:19381 * src/buffer.c (syms_of_buffer) <Vafter_change_functions>: fix docstring. * build-aux/git-hooks/commit-msg (at_sign): Bump up line-length limit to 78.
* src/gnutls.c (gnutls_init): Fix deprecation warning from GCC.Eli Zaretskii2014-12-131-0/+4
|
* A better fix for bug#19346Eli Zaretskii2014-12-121-0/+6
| | | | | | src/gnutls.c (Fgnutls_available_p, syms_of_gnutls): Move gnutls-available-p out of the HAVE_GNUTLS conditional, and define them only once.
* Always define `gnutls-available-p' even if GnuTLS is not available.Ted Zlatanov2014-12-111-0/+11
| | | | | | | | | | | | Fixes: debbugs:19346 * gnutls.c (Fgnutls_available_p syms_of_gnutls): Move later for clarity. Let the availability check return Qnil when the GnuTLS integration is not available, instead of erroring out. * gnutls.h: Always declare syms_of_gnutls. * emacs.c (main): Always include gnutls.h and run syms_of_gnutls.
* Support overflow-newline-into-fringe together with word-wrap (bug#19300)Eli Zaretskii2014-12-101-0/+6
| | | | | | src/xdisp.c (move_it_in_display_line_to, display_line): Don't disallow overflow-newline-into-fringe when word-wrap is in effect.
* * src/eval.c (Fsignal): Remove duplicate test.Lee Duhem2014-12-041-0/+5
| | | | (Fautoload_do_load): Fix up docstring.
* More flicker fixes for OSX, related to bug 18757.Jan Djärv2014-12-021-0/+12
| | | | | | | | | | | | * nsfns.m (ns_set_name_as_filename): Don't set represented filename at once, call ns_set_represented_filename instead. * nsterm.h: Declare ns_set_represented_filename. * nsterm.m (represented_filename, represented_frame): New variables. (ns_set_represented_filename): New function. (sendEvent:): Set represented filename here to avoid flicker, related to Bug#18757.
* Fix bug #19201 with after-strings not being displayed.Eli Zaretskii2014-11-271-0/+7
| | | | | | | src/xdisp.c (handle_single_display_spec): When ignoring a fringe bitmap display, reset the ignore_overlay_strings_at_pos_p flag. (next_element_from_buffer): When done with overlays, reset the ignore_overlay_strings_at_pos_p flag.
* Fix bug #19141 with UNCs in w32-shell-execute.Eli Zaretskii2014-11-251-0/+5
| | | | | src/w32fns.c (Fw32_shell_execute): Convert forward slashes in DOCUMENT to backslashes, if DOCUMENT is a file.
* Use consistent paxctl and setfattr flags for temacs.Ulrich Müller2014-11-251-0/+6
| | | | | | * Makefile.in (temacs$(EXEEXT)): Use consistent flag settings for paxctl and setfattr. Fixes temacs startup failure with grsecurity/PaX enabled Linux kernel (bug#19067).
* Fix white-space problems in ChangeLogs.Paul Eggert2014-11-241-2/+2
|
* Define MINGW_W64 and use it instead of _W64Oscar Fuentes2014-11-171-0/+6
| | | | | | | | | | | | | | | | | | | ... for detecting MinGW-w64. _W64 is not specific of MinGW-w64, it is defined for compatibility with MS VC++. * nt/inc/ms-w32.h: Define MINGW_W64. * admin/CPP-DEFINES: Mention MINGW_W64. * nt/addpm.c: Use it. * nt/addsection.c: Use it. * nt/preprep.c: Use it. * src/w32.c: Use MINGW_W64 instead of _W64 * src/w32term.c: Likewise.
* * src/frame.c (Fhandle_switch_frame): Deactivate shift-region (bug#19003).Stefan Monnier2014-11-161-0/+4
| | | | * lisp/window.el (handle-select-window): Deactivate shift-region.
* Backport: Fix for 18993.Jan D2014-11-151-0/+5
| | | | | * nsterm.m (ns_send_appdefined): Check for application defined event on Cocoa (Bug#18993). Backport from trunk.
* Fix bug #19060 with inaccurate pixel-based scrolling.Eli Zaretskii2014-11-151-0/+6
| | | | | | src/window.c (window_scroll_pixel_based): Avoid truncation/rounding errors in computing the number of pixels to scroll. Suggested by Kelly Dean <kelly@prtime.org>.
* Fix getting frame size wrong when restoring desktop.Jan D2014-11-151-0/+3
| | | | | * nsmenu.m (update_frame_tool_bar): If tool bar changes height, call updateFrameSize.
* Fixes: 18757Jan D2014-11-151-0/+4
| | | | * nsterm.m (setFrame:): Remove call to display (Bug#18757).
* Fixes: 19036Jan Djärv2014-11-141-0/+6
| | | | | | * nsfns.m (x_set_foreground_color, x_set_background_color) (x_set_cursor_color, Fxw_color_values): Block/unblock input, use SET_FRAME_GARBAGED instead of redraw_frame (Bug#19036).
* Fix bug #18982 with assertion violations when reverting buffers.Eli Zaretskii2014-11-091-0/+3
| | | | | src/fileio.c (Finsert_file_contents): Invalidate buffer caches also when the inserted text does not need decoding.
* Fix bug #18995 with compiling w32heap.c with -funroll-loops.Eli Zaretskii2014-11-091-0/+5
| | | | src/w32heap.c (allocate_heap): Set the lower limit of heap at 8MB.
* * nsterm.h (EmacsScroller): judge returns bool.Jan Djärv2014-11-091-0/+9
| | | | | | | | | * nsterm.m (ns_set_vertical_scroll_bar): Release bar. (ns_judge_scroll_bars): Only set removed if judge returns true. (judge): Returns bool == condemned. Remove self from window. (setPosition:portion:whole:): Remove raise SIGIO. Fixes: debbugs:18757
* * nsterm.m (ns_set_vertical_scroll_bar): Don't call bar setPosition: unlessJan Djärv2014-11-081-0/+2
| | | | | | needed (Bug#18757). Fixes: debbugs:18993
* Attempt to fix NS hang. Will probably cause merge conflicts.Jan Djärv2014-11-081-0/+6
| | | | | | | | * nsterm.m (init): Replace OSX 10.9 check with IMPL_COCOA. (run): Ditto. Only use non-system event loop if OSX version is exactly 10.9. Fixes: debbugs:18993
* * callproc.c (encode_current_directory): Support handling of fileMichael Albinus2014-11-071-0/+5
| | | | | | names prepended by "/:". Fixes: debbugs:18891
* * src/syntax.c (back_comment): Fix off-by-one error.Alan Mackenzie2014-11-061-0/+4
| | | | Fixes: debbugs:18022
* * src/xgselect.c (xg_select): Use g_main_context_acquire.Dima Kogan2014-11-051-0/+4
| | | | Fixes: debbugs:18861
* * dired.c (Ffile_attributes): Return Qnil, if Fexpand_file_nameMichael Albinus2014-11-051-0/+5
| | | | | | raises an error. Fixes: debbugs:18891
* Fix minor issues with functions that dump glyph matrices.Eli Zaretskii2014-11-031-0/+6
| | | | | | src/xdisp.c (Fdump_glyph_matrix, Fdump_frame_glyph_matrix): Doc fix. (Fdump_frame_glyph_matrix): Don't segfault if invoked on a GUI frame; instead, print an error message.
* * nsfns.m (ns_set_doc_edited): Check for FRAME_NS.Jan Djärv2014-11-031-0/+4
| | | | Fixes: debbugs:18925
* * macfont.m (macfont_glyph_extents): Turn off syntetic boldJan Djärv2014-10-311-0/+5
| | | | | | | | if force_integral_p (i.e. no antialias). (macfont_draw): Check ns_antialias_text, also turn off syntetic bold if no antialias. Fixes: debbugs:18876
* * emacs.c (main): Don't chdir to $HOME on Cocoa if --chdir was given.Jan Djärv2014-10-311-0/+5
| | | | Fixes: debbugs:18846
* * nsfns.m (ns_set_doc_edited): Do all logic (check frames) hereJan Djärv2014-10-301-0/+8
| | | | | | | | | instead of in xdisp.c, function now takes void. * nsterm.h (ns_set_doc_edited): Declare taking no args. * xdisp.c (prepare_menu_bars): Remove HAVE_NS code. (redisplay_internal): Call ns_set_doc_edited if HAVE_NS (Bug#18884).
* * nsfns.m (x_icon): icon_top/left is int.Jan Djärv2014-10-301-0/+14
| | | | | | | | | | | | | | * nsterm.h (EmacsScroller): Replace Lisp_Object win with struct window*. Remove getMouseMotionPart. (ns_output): Make icon_top/left int. * nsterm.m (ns_mouse_position): Remove unused code. (initFrame:window:, dealloc): Use window instead of win. (getMouseMotionPart:window:x:y:): Remove, unused. (sendScrollEventAtLoc:fromEvent:): Make Lisp_Object win from window. Fixes: debbugs:18889
* * src/unexmacosx.c (copy_data_segment): Port to GCC 4.6+ (backport)Samuel Bronson2014-10-291-0/+4
| | | | Fixes: debbugs:9927
* Fix bug #18873 with non-ASCII characters in user's HOME directory.Eli Zaretskii2014-10-281-0/+5
| | | | | src/fileio.c (Fexpand_file_name): Use make_unibyte_string, not build_string, when importing a home directory.
* Fix bug #18839 with incorrect image size returned by posn-at-point.Eli Zaretskii2014-10-261-0/+6
| | | | | | src/dispnew.c (buffer_posn_from_coords): Use WINDOW_WANTS_HEADER_LINE_P, not WINDOW_WANTS_MODELINE_P, to account for the header-line height.
* * xdisp.c (erase_phys_cursor): Fix confusion between window-relative and ↵YAMAMOTO Mitsuharu2014-10-221-0/+2
| | | | text area-relative x-coordinates. [Backport]
* * xdisp.c (draw_glyphs): Set clipping to highlight boundaries. [Backport]YAMAMOTO Mitsuharu2014-10-221-0/+5
|
* * src/minibuf.c (history-length): Increase default from 30 to 100.Glenn Morris2014-10-201-2/+6
| | | | * lisp/cus-start.el (history-length): Bump :version. [Backport]
* * src/xdisp.c (redisplay_window): Re-run pre-redisplay-function after weStefan Monnier2014-10-201-19/+23
| | | | move point.
* Add 24.4 release ChangeLog entriesemacs-24.4Glenn Morris2014-10-201-0/+4
|
* Fix display on X of 1-pixel R2L characters.Eli Zaretskii2014-10-171-0/+7
| | | | | | | src/xterm.c (x_draw_hollow_cursor): Fix display of hollow cursor on 1-pixel R2L characters. Reported by Dmitry Antipov <dmantipov@yandex.ru>, see http://lists.gnu.org/archive/html/emacs-devel/2014-10/msg00518.html.
* Fix port to Debian GNU/kFreeBSD 7 (wheezy).Paul Eggert2014-10-101-0/+5
| | | | | | * process.c (accept4) [!HAVE_ACCEPT4]: New macro. Fixes: debbugs:18666
* * src/frame.c (Fmouse_pixel_position): Call Vmouse_position_function.Stefan Monnier2014-10-091-0/+5
| | | | Fixes: debbugs:18638
* Fix bug #18610 with crashes when visiting files with ESC and 8-bit bytes.Kenichi Handa2014-10-081-0/+5
| | | | | | | src/coding.c (detect_coding_iso_2022): Set coding->rejected correctly when an invalid escape sequence is found. Backported from trunk.
* * font.c (font_list_entities): Do not add empty vector to font cache.Dmitry Antipov2014-10-031-0/+6
| | | | | (font_matching_entity): Likewise. If matching entity is found, insert 1-item vector with this entity instead of an entity itself (Bug#17125).
* Fix bug #18584 with assertion violations while scrolling.Eli Zaretskii2014-10-021-0/+5
| | | | | src/xdisp.c (move_it_by_lines): Call reseat_1 after moving the iterator backwards, to resync the bidi iterator.
* ChangeLog whitespace triviaGlenn Morris2014-10-011-2/+2
|
* * xfaces.c (Finternal_set_lisp_face_attribute): Added FIXME comment.Jan Djärv2014-10-011-0/+1
|