summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Revert "* lisp/subr.el (when): Use `macroexp-progn'"...This reverts commit 8e843831eaf271801836b7a3e4dd3b4fb0bb72b8. It breaks bootstrapping (duh). Artur Malabarba2015-11-041-1/+1
* * lisp/files.el (report-errors): Obsolete...(normal-mode, hack-local-variables, dir-locals-find-file): Use `with-demoted-errors' instead. Artur Malabarba2015-11-041-15/+4
* * lisp/subr.el (when): Use `macroexp-progn'...* test/automated/subr-tests.el (subr-test-when): New test Artur Malabarba2015-11-042-1/+15
* * lisp/progmodes/xref.el: Doc fixes...(xref-make-file-location, xref-make-buffer-location, xref-make) (xref-make-bogus-location, xref-make-match): Add cross-references. (xref--insert-xrefs): Fix typo in docstring. Juanma Barranquero2015-11-041-6/+6
* Render fringe bitmaps correctly on NextStep (bug#21301)....The fringe bitmaps were inverted, the background was not transparent, the image data was horizontally mirrored, and periodic fringe bitmaps were not supported. * nsimage.m ([EmacsImage initFromXBM:width:height:fg:bg:]): When both background and foreground colors are 0, set the background alpha channel to 0 (making the background transparent). When copying the image data, do this from the most significant bit (leftmost) to the least (rightmost), to avoid mirroring. * nsterm.m (ns_draw_fringe_bitmap): Don't invert the image bits. Add support for periodic images (e.g. the empty line indicator). Anders Lindgren2015-11-042-11/+49
* * lisp/emacs-lisp/pcase.el (pcase): Tweak docstring.Michael Heerdegen2015-11-031-4/+4
* * admin/MAINTAINERS: Add seq-tests.el, map-tests.el, and thunk-tests.el.Nicolas Petton2015-11-031-0/+3
* * admin/MAINTAINERS: Add thunk.el.Nicolas Petton2015-11-031-0/+1
* Change maintainer address....* lisp/calc/calc (calc-bug-address): Change address. Jay Belanger2015-11-0344-52/+1
* ; Shorten TODO list in file-notify-tests.elMichael Albinus2015-11-031-1/+0
* Fix a stupid error in gfilenotify.c....* src/gfilenotify.c (dir_monitor_callback): Cancel monitor only, if we've got a `deleted' signal AND the file name is the watched one. Michael Albinus2015-11-031-0/+1
* Fix Bug#21816; case insensitive file system in elisp-mode-tests.el...* test/automated/elisp-mode-tests.el (xref-elisp-test-run): Use case-insensitive string compare for file names. (emacs-test-dir): Add 'downcase' to cause case differences (at least on my system). Stephen Leake2015-11-031-7/+24
* Fix ChangeLog.2 entry for js-jsx-modeJackson Ray Hamilton2015-11-021-0/+8
* flymake-tests.el (warning-predicate-rx-gcc): Fix check....* test/automated/flymake-tests.el (warning-predicate-rx-gcc): Also check that "make" is available, not just "gcc". Juanma Barranquero2015-11-021-1/+1
* Document behavior of collation on Cygwin...* test/automated/fns-tests.el (fns-tests-collate-sort): Mark as expected failure on Cygwin. * doc/lispref/strings.texi (Text Comparison): Document that punctuation and whitespace are not ignored for sorting on Cygwin. Ken Brown2015-11-022-2/+7
* * build-aux/msys-to-w32: Prevent double slashes in w32 path list.Dani Moncayo2015-11-021-1/+1
* * lisp/progmodes/f90.el (f90-no-block-limit):...Add associate. (Bug#21794) * test/automated/f90.el (f90-test-bug21794): New test. Glenn Morris2015-11-012-1/+16
* Fix incompatibility with TCC in test for bug#18745...* test/automated/process-tests.el (process-test-quoted-batfile): Remove spaces unrelated to the bug being tested. Juanma Barranquero2015-11-011-3/+3
* ; ChangeLog.2 fixesJuanma Barranquero2015-11-011-318/+271
* Improve completion in tramp-gvfs.el...* lisp/net/tramp-gvfs.el (tramp-zeroconf-parse-device-names): Renamed from `tramp-zeroconf-parse-service-device-names'. (tramp-zeroconf-parse-webdav-device-names): Removed. Code merged with `tramp-zeroconf-parse-device-names'. (tramp-gvfs-parse-device-names): New defun. (top): Use it when `tramp-zeroconf-parse-device-names' is not applicable. * lisp/net/tramp.el (tramp-set-completion-function): The argument could also be a zeroconf service type. Michael Albinus2015-11-012-29/+68
* ; Auto-commit of ChangeLog files.Glenn Morris2015-11-011-1/+1180
* ; Auto-commit of loaddefs files.Glenn Morris2015-11-011-253/+278
* ; Fix ChangeLog.2 typos and styleJuanma Barranquero2015-11-011-983/+924
* ntlm.el: Change version to 2.0.0Thomas Fitzsimmons2015-10-311-1/+1
* Fix bug#21762...* lisp/progmodes/python.el (python-syntax-closing-paren-p): Check with `eql' instead of `=' to accommodate the case that (syntax-after (point)) returns nil. * test/automated/python-tests.el (python-indent-inside-paren-7): New test. Juanma Barranquero2015-11-012-2/+10
* * test/automated/python-tests.el: Avoid warnings...(python-tests-with-temp-buffer, python-tests-with-temp-file): Bind `python-indent-guess-indent-offset' to nil. # Please enter the commit message for your changes. Lines starting # with '#' will be ignored, and an empty message aborts the commit. # On branch master # Your branch is up-to-date with 'origin/master'. # # Changes to be committed: # modified: test/automated/python-tests.el # Juanma Barranquero2015-11-011-5/+7
* * src/alloc.c: Silence compiler warnings...(pointers_fit_in_lispobj_p, mmap_lisp_allowed_p): #ifdef DOUG_LEA_MALLOC. Juanma Barranquero2015-10-311-0/+2
* * etc/NEWS: Fix js-jsx-mode entry punctuationJackson Ray Hamilton2015-10-311-1/+1
* Add JSX indentation via js-jsx-mode. (Bug#21799)...* progmodes/js.el: Add JSX indentation support. (js-jsx-indent-line) (js-jsx-mode): New functions. Jackson Ray Hamilton2015-10-313-0/+309
* Merge branch 'master' of git.sv.gnu.org:/srv/git/emacsMichael Albinus2015-10-311-1/+1
|\
| * Avoid errors in redisplay--pre-redisplay-functions...* lisp/emacs-lisp/cursor-sensor.el (cursor-sensor--detect): Don't use 'bobp', instead compare window-point with 1. (Bug#21730) Eli Zaretskii2015-10-311-1/+1
* | Minor fix in filenotify.el...* lisp/filenotify.el (file-notify--event-file-name) (file-notify--event-file1-name): Normalize result with `directory-file-name'. Michael Albinus2015-10-312-6/+8
|/
* Merge from gnulib....This incorporates: 2015-10-30 intprops: add WRAPV and const flavors for GCC 5 2015-10-25 stdalign: port to Sun C 5.9 * doc/misc/texinfo.tex, lib/intprops.h, lib/stdalign.in.h: Copy from gnulib. Paul Eggert2015-10-303-77/+417
* Fix a typo in a macro name...* src/w32proc.c (_NLSCMPERROR): Fix a typo in the name of this macro. (w32_compare_strings): Adjust for the correction. Eli Zaretskii2015-10-301-6/+6
* Add result messages in vc-tests.el...* test/automated/vc-tests.el (vc-test--state) (vc-test--working-revision, vc-test--checkout-model): Add result messages. Michael Albinus2015-10-301-26/+37
* * test/automated/faces-tests.el: Add another testArtur Malabarba2015-10-301-0/+3
* * lisp/faces.el (faces--attribute-at-point): Fix bug...introduced by previous commit. Artur Malabarba2015-10-301-6/+7
* * test/automated/faces-tests.el: New fileArtur Malabarba2015-10-301-0/+51
* * lisp/faces.el: Refactor common code and fix a bug...(faces--attribute-at-point): New function. Fix a bug when the face at point is a list of faces and the desired attribute is not on the first one. (foreground-color-at-point, background-color-at-point): Use it. Artur Malabarba2015-10-301-28/+30
* * etc/tutorials/TUTORIAL.translators: Fix PL namesPrzemysław Wojnowski2015-10-301-3/+3
* * lisp/character-fold.el: Provide `character-fold'Juanma Barranquero2015-10-301-0/+2
* Add more faces for Gnus and ivy...* etc/themes/tsdh-dark-theme.el (tsdh-dark): add more faces for Gnus and ivy. Tassilo Horn2015-10-301-4/+10
* Some minor fixes for tramp-gvfs.el...* lisp/net/tramp-gvfs.el (tramp-gvfs-handle-file-attributes): An attribute returned by gvfs-info might be empty. In case of undetermined uid or gid, return "UNKNOWN" or -1, respectively. (tramp-zeroconf-parse-service-device-names): New defun. Derived from `tramp-zeroconf-parse-workstation-device-names'. (top): Add completion functions for "afp" and "smb" methods. Michael Albinus2015-10-301-42/+35
* * test/automated/character-fold-tests.el: New fileArtur Malabarba2015-10-301-0/+58
* * test/automated/sort-tests.el: New file...Tests in this file are randomly generated and then tested with regular, reverse, and case-fold sorting. Artur Malabarba2015-10-301-0/+106
* Describe known problems with pinning Emacs to taskbar...* etc/PROBLEMS: Describe the problem with pinning Emacs to taskbar on Windows 10. For the details, see the discussion starting at http://lists.gnu.org/archive/html/help-emacs-windows/2015-09/msg00000.html. Eli Zaretskii2015-10-301-0/+30
* * lisp/isearch.el: Avoid an error that blocks isearch...(isearch-update): Don't error if `isearch--current-buffer' has been killed. * test/automated/isearch-tests.el (isearch--test-update): New file. Artur Malabarba2015-10-302-1/+33
* Fix documentation of 'beginning/end-of-buffer'...* lisp/simple.el (beginning-of-buffer, end-of-buffer): Clarify conditions under which the mark will be pushed at the previous position. (Bug#21748) Phil Sainty2015-10-301-4/+4
* Add RefTeX feature idea: editing RefTeX TOC buffersTassilo Horn2015-10-301-0/+9
* More face defs for ivy, swiper, ace-window, eshellTassilo Horn2015-10-301-3/+10