]> git.eshelyaron.com Git - emacs.git/log
emacs.git
7 years agoUpdated readme with thoughts of package.el feature/integrated-elpa
Phillip Lord [Sat, 8 Oct 2016 09:38:16 +0000 (10:38 +0100)]
Updated readme with thoughts of package.el

8 years agoMore thoughts on getting files into package
Phillip Lord [Mon, 19 Sep 2016 10:17:07 +0000 (11:17 +0100)]
More thoughts on getting files into package

8 years agoBetter handling of ELPA env var
Phillip Lord [Fri, 16 Sep 2016 20:33:04 +0000 (21:33 +0100)]
Better handling of ELPA env var

8 years agoMerge branch into feature/integrated-elpa
Phillip Lord [Fri, 16 Sep 2016 09:04:18 +0000 (10:04 +0100)]
Merge branch into feature/integrated-elpa

8 years agoELPA as an environment variable
Phillip Lord [Thu, 15 Sep 2016 22:25:39 +0000 (23:25 +0100)]
ELPA as an environment variable

8 years agoELPA support
Phillip Lord [Thu, 15 Sep 2016 14:24:57 +0000 (15:24 +0100)]
ELPA support

8 years agoMultifile packages now work
Phillip Lord [Thu, 15 Sep 2016 08:46:30 +0000 (09:46 +0100)]
Multifile packages now work

8 years agoAdd bug report about multifile packages
Phillip Lord [Thu, 15 Sep 2016 08:41:59 +0000 (09:41 +0100)]
Add bug report about multifile packages

8 years agoFix include in makefile
Phillip Lord [Thu, 15 Sep 2016 08:41:45 +0000 (09:41 +0100)]
Fix include in makefile

8 years agoautoconf support
Phillip Lord [Thu, 15 Sep 2016 08:37:50 +0000 (09:37 +0100)]
autoconf support

8 years agoREADME added
Phillip Lord [Wed, 14 Sep 2016 22:50:33 +0000 (23:50 +0100)]
README added

8 years agoSummarization happening and some ELPA support
Phillip Lord [Wed, 14 Sep 2016 22:20:23 +0000 (23:20 +0100)]
Summarization happening and some ELPA support

8 years agoMakefile generator for tests
Phillip Lord [Wed, 14 Sep 2016 21:39:25 +0000 (22:39 +0100)]
Makefile generator for tests

8 years agoBuild system now in generated makefile
Phillip Lord [Tue, 13 Sep 2016 21:50:45 +0000 (22:50 +0100)]
Build system now in generated makefile

8 years agoLots of changes
Phillip Lord [Tue, 13 Sep 2016 15:53:11 +0000 (16:53 +0100)]
Lots of changes

8 years agoRefactor new files
Phillip Lord [Tue, 13 Sep 2016 08:37:21 +0000 (09:37 +0100)]
Refactor new files

8 years agoStart to factor out
Phillip Lord [Mon, 12 Sep 2016 17:09:32 +0000 (18:09 +0100)]
Start to factor out

8 years agoBuild and test ELPA packages also
Phillip Lord [Mon, 12 Sep 2016 12:27:01 +0000 (13:27 +0100)]
Build and test ELPA packages also

8 years agoExample test
Phillip Lord [Mon, 12 Sep 2016 12:26:52 +0000 (13:26 +0100)]
Example test

8 years agoVarious path hacks
Phillip Lord [Mon, 12 Sep 2016 09:29:54 +0000 (10:29 +0100)]
Various path hacks

8 years agobuild-all depends on emacs
Phillip Lord [Mon, 12 Sep 2016 09:11:13 +0000 (10:11 +0100)]
build-all depends on emacs

Otherwise we fail during parallel builds.

8 years agoMerge branch 'feature/integrated-elpa' of vm-npl25.ncl.ac.uk:git/emacs into feature...
Phillip Lord [Mon, 12 Sep 2016 09:01:05 +0000 (10:01 +0100)]
Merge branch 'feature/integrated-elpa' of vm-npl25.ncl.ac.uk:git/emacs into feature/integrated-elpa

8 years agoInitial Support for ELPA packages in core
Phillip Lord [Wed, 7 Sep 2016 16:33:27 +0000 (17:33 +0100)]
Initial Support for ELPA packages in core

Previously, Emacs packages in core were stored only in their own
directory structure. Here, we add support for packages following
conventions for ELPA to be added to the packages directory. These are
compiled, and loaded directly using package.el during start up.

8 years agoStarting to add test support
Phillip Lord [Thu, 8 Sep 2016 21:03:43 +0000 (22:03 +0100)]
Starting to add test support

8 years agoInitial Support for ELPA packages in core
Phillip Lord [Wed, 7 Sep 2016 16:33:27 +0000 (17:33 +0100)]
Initial Support for ELPA packages in core

Previously, Emacs packages in core were stored only in their own
directory structure. Here, we add support for packages following
conventions for ELPA to be added to the packages directory. These are
compiled, and loaded directly using package.el during start up.

8 years agoMake gif animation work (bug#24004)
Katsumi Yamaoka [Tue, 19 Jul 2016 07:34:54 +0000 (07:34 +0000)]
Make gif animation work (bug#24004)

* lisp/image.el (image-animate-timeout): Fix the logic that tests if
an animation is too big (bug#24004).

8 years ago* lisp/simple.el (undo-amalgamate-change-group): New function
Stefan Monnier [Tue, 19 Jul 2016 01:04:39 +0000 (21:04 -0400)]
* lisp/simple.el (undo-amalgamate-change-group): New function

* lisp/emulation/viper-cmd.el (viper-adjust-undo): Use it.
(viper-set-complex-command-for-undo): Save current state with
prepare-change-group.
* lisp/emulation/viper-init.el (viper-undo-needs-adjustment)
(viper-buffer-undo-list-mark): Remove.

8 years agoKeep w32 environment settings internal only
Noam Postavsky [Wed, 29 Jun 2016 22:52:57 +0000 (18:52 -0400)]
Keep w32 environment settings internal only

* src/emacs.c (main) [WINDOWSNT]: Move init_environment calls after the
set_initial_environment call.  This prevents Emacs' modifications to the
environment from contaminating Vprocess_environment and
Vinitial_environment (Bug #10980).
* src/callproc.c (getenv_internal) [WINDOWSNT]: Consult Emacs' internal
environment in as a fallback to Vprocess_environment.
* test/src/callproc-tests.el (initial-environment-preserved): New Test.

8 years agoBetter documentation for cl-reduce (bug#24014)
Nicolas Petton [Mon, 18 Jul 2016 12:12:50 +0000 (14:12 +0200)]
Better documentation for cl-reduce (bug#24014)

* lisp/emacs-lisp/cl-seq.el (cl-reduce): Explain what reducing means.

8 years ago; Revert "Replace eldoc-documentation-function with a hook"
Dmitry Gutov [Sun, 17 Jul 2016 23:22:24 +0000 (02:22 +0300)]
; Revert "Replace eldoc-documentation-function with a hook"

This reverts commit 5811404f0b86c9fa92c3e0b22505a9bb05f04145.

It doesn't have the consensus, as evidenced by
http://lists.gnu.org/archive/html/emacs-devel/2016-06/msg00138.html

8 years ago; Revert "Use eldoc-documentation-functions"
Dmitry Gutov [Sun, 17 Jul 2016 23:17:06 +0000 (02:17 +0300)]
; Revert "Use eldoc-documentation-functions"

This reverts commit 001d88b62ecb8163a148656acb103b354ce7613a.

It doesn't have the consensus, as evidenced by
http://lists.gnu.org/archive/html/emacs-devel/2016-06/msg00138.html

8 years agoRemove separate pool for popup dialogs (bug#23856)
Alan Third [Wed, 29 Jun 2016 19:17:18 +0000 (20:17 +0100)]
Remove separate pool for popup dialogs (bug#23856)

* src/nsmenu.m (pop_down_menu, ns_popup_dialog): Remove references to
autorelease pool and Popdown_data struct.

8 years agoUse eldoc-documentation-functions
Mark Oteiza [Sun, 17 Jul 2016 16:49:57 +0000 (12:49 -0400)]
Use eldoc-documentation-functions

* lisp/hexl.el (hexl-mode):
* lisp/ielm.el (inferior-emacs-lisp-mode):
* lisp/progmodes/cfengine.el (cfengine3-mode):
* lisp/progmodes/elisp-mode.el (emacs-lisp-mode):
* lisp/progmodes/octave.el (octave-mode, inferior-octave-mode):
* lisp/progmodes/python.el (python-mode):
* lisp/simple.el (read--expression): Add buffer-locally to hook
eldoc-documentation-functions.

8 years agoOptimize ucs-normalize.el compilation
Noam Postavsky [Sat, 16 Jul 2016 02:10:33 +0000 (22:10 -0400)]
Optimize ucs-normalize.el compilation

* lisp/international/ucs-normalize.el (ucs-normalize-combining-chars-regexp):
(quick-check-list-to-regexp): Use regexp-opt-charset instead of
regexp-opt.
* lisp/international/ucs-normalize.el (quick-check-list): Reuse a single
temp buffer for the whole loop.

8 years agoAdd tests for ucs-normalize.el
Noam Postavsky [Sat, 16 Jul 2016 01:18:08 +0000 (21:18 -0400)]
Add tests for ucs-normalize.el

Some tests are marked as expected to fail.

* test/lisp/international/ucs-normalize-tests.el: New tests.
* admin/unidata/NormalizationTest.txt: Add data for tests.
* admin/unidata/README: Add URL for NormalizationTest.txt.
* admin/notes/unicode: Add note about running (and updating the data
for) the new tests.  Remove note about normalization being unsupported.

8 years agoFix cursor display (bug#23993)
Alan Third [Fri, 15 Jul 2016 20:02:47 +0000 (21:02 +0100)]
Fix cursor display (bug#23993)

* src/xdisp.c (get_phys_cursor_geometry): Fix invalid C operator.

8 years agoStop worrying about Alliant in bytecode.c
Paul Eggert [Fri, 15 Jul 2016 20:15:43 +0000 (22:15 +0200)]
Stop worrying about Alliant in bytecode.c

* src/bytecode.c (PUSH): Remove workaround for long-obsolete compiler.

8 years agoRemove BYTE_MAINTAIN_TOP
Paul Eggert [Fri, 15 Jul 2016 20:15:42 +0000 (22:15 +0200)]
Remove BYTE_MAINTAIN_TOP

It is no longer needed now that we assume GC_MARK_STACK ==
GC_MAKE_GCPROS_NOOPS.
* src/bytecode.c (BYTE_MAINTAIN_TOP): Remove.
All uses removed, and code simplified accordingly.
(BEFORE_POTENTIAL_GC, AFTER_POTENTIAL_GC): Remove, since they
are always no-ops now.  All uses removed.
(MAYBE_GC): Remove.  All uses replaced by maybe_gc,
since it is now equivalent.

8 years agoRemove now-inaccurate bytecode comments
Paul Eggert [Fri, 15 Jul 2016 20:15:42 +0000 (22:15 +0200)]
Remove now-inaccurate bytecode comments

* src/bytecode.c: Remove comments that are no longer accurate.
Most of these are actually old ChangeLog entries.

8 years agoPort to glibc 2.24 (pre-release) + ppc64
Paul Eggert [Fri, 15 Jul 2016 11:07:09 +0000 (13:07 +0200)]
Port to glibc 2.24 (pre-release) + ppc64

Inspired by a suggestion by Florian Weimer in:
https://sourceware.org/ml/libc-alpha/2016-07/msg00425.html
* configure.ac (HAVE_PERSONALITY_ADDR_NO_RANDOMIZE):
Rename from HAVE_PERSONALITY_LINUX32, and check for
ADDR_NO_RANDOMIZE (the crucial thing) instead of for LINUX32.
All uses changed.
* src/emacs.c (main) [HAVE_PERSONALITY_ADDR_NO_RANDOMIZE]:
Use ADDR_NO_RANDOMIZE from personality.h rather than inventing the
flag ourselves.  Just set that flag, rather than also setting the
persona.  When doing it, avoid functions like putenv that may
allocate memory.

8 years agoRevert "Add a couple cells to lisp-prettify-symbols-alist"
Mark Oteiza [Thu, 14 Jul 2016 22:23:40 +0000 (18:23 -0400)]
Revert "Add a couple cells to lisp-prettify-symbols-alist"

This reverts commit bdda4855c635ecf4135e23321bdba023e9ae65c9.

8 years ago* lisp/simple.el (shell-command): Add save-match-data comment
Stefan Monnier [Thu, 14 Jul 2016 13:45:05 +0000 (09:45 -0400)]
* lisp/simple.el (shell-command): Add save-match-data comment

8 years agoCC Mode: correct incorrect invocation of parse-partial-sexp.
Alan Mackenzie [Thu, 14 Jul 2016 12:42:17 +0000 (12:42 +0000)]
CC Mode: correct incorrect invocation of parse-partial-sexp.

Fixes bug #23944.

* lisp/progmodes/cc-engine.el (c-literal-limits): make the sixth argument of
an invocation of parse-partial-sexp 'syntax-table, not the fourth.

8 years agoFix configure summary for hybrid malloc configurations
Andreas Schwab [Thu, 14 Jul 2016 08:26:24 +0000 (10:26 +0200)]
Fix configure summary for hybrid malloc configurations

* configure.ac ("$hybrid_malloc" = yes): Set GNU_MALLOC to no,
parenthesize value of GNU_MALLOC_reason.

8 years agoFix delete-duplicate-lines
Stephen Berman [Thu, 14 Jul 2016 07:55:28 +0000 (09:55 +0200)]
Fix delete-duplicate-lines

* lisp/sort.el (delete-duplicate-lines): Delete duplicate
first line when operating backward (bug#23863).

8 years agoRemove unused SHEAP_OBJ
Andreas Schwab [Thu, 14 Jul 2016 07:29:17 +0000 (09:29 +0200)]
Remove unused SHEAP_OBJ

* Makefile.in (base_obj): Remove $(SHEAP_OBJ).

8 years ago* lisp/gnus/mm-decode.el (mm-convert-shr-links):
Katsumi Yamaoka [Thu, 14 Jul 2016 02:19:24 +0000 (02:19 +0000)]
* lisp/gnus/mm-decode.el (mm-convert-shr-links):
Use shr-image-map instead of shr-map (bug#23964).

8 years ago* lisp/mouse.el (mouse): Consolidate group definition here
Stefan Monnier [Wed, 13 Jul 2016 15:08:21 +0000 (11:08 -0400)]
* lisp/mouse.el (mouse): Consolidate group definition here

* lisp/cus-edit.el (mouse): Remove both group definitions.

8 years agoInclude versioned preloaded libraries in `package--builtin-versions'
Chris Feng [Wed, 13 Jul 2016 11:52:10 +0000 (19:52 +0800)]
Include versioned preloaded libraries in `package--builtin-versions'

* lisp/emacs-lisp/autoload.el (update-directory-autoloads): Do not
exclude preloaded libraries or remove entries generated for them.
(autoload-generate-file-autoloads): Do not generate autoload
statements for preloaded libraries.

8 years agoOmit unnecessary #includes from xwidget.c
Paul Eggert [Wed, 13 Jul 2016 08:15:42 +0000 (10:15 +0200)]
Omit unnecessary #includes from xwidget.c

* src/xwidget.c: Remove #include directives that are not needed.
Also, don’t conditionalize #includes on HAVE_X_WINDOWS, since this
file is compiled only if the X interface is available.

8 years agoPort xwidget.c to GCC 6 with --enable-gcc-warnings
Paul Eggert [Wed, 13 Jul 2016 07:56:50 +0000 (09:56 +0200)]
Port xwidget.c to GCC 6 with --enable-gcc-warnings

* src/xwidget.c (x_draw_xwidget_glyph_string, xwidget_end_redisplay):
Adjust to pacify GCC.  Add a couple of FIXME comments, suggesting
possible bugs found by GCC.

8 years agoEscape meta chars in commands processed by shell
Tino Calancha [Wed, 13 Jul 2016 04:27:33 +0000 (13:27 +0900)]
Escape meta chars in commands processed by shell

* lisp/progmodes/grep.el (grep-compute-defaults): Quote braces
in all commands to be passed to a shell (Bug#23959).

8 years agoRevert "Cleanup tooltips"
John Wiegley [Tue, 12 Jul 2016 22:27:25 +0000 (15:27 -0700)]
Revert "Cleanup tooltips"

This reverts commit 20038f8ab75dd1551412a43cd58520c483c22921.

I am reverting this change because it was applied without prior discussion
on emacs-devel, and has been found to break the NS port.  It needs more
testing and review before it should be applied here.

8 years ago* lisp/emacs-lisp/cl-macs.el (cl--prog): New function
Stefan Monnier [Tue, 12 Jul 2016 16:05:01 +0000 (12:05 -0400)]
* lisp/emacs-lisp/cl-macs.el (cl--prog): New function

(cl-prog, cl-prog*): New macros.

8 years ago* cl-generic.el (cl-defmethod): Make docstring dynamic
Stefan Monnier [Tue, 12 Jul 2016 16:04:01 +0000 (12:04 -0400)]
* cl-generic.el (cl-defmethod): Make docstring dynamic

* lisp/emacs-lisp/cl-generic.el (cl-defmethod): Make docstring dynamic.
(cl--generic-make-defmethod-docstring): New function for that.
(cl-defmethod, cl-generic-generalizers): Tweak docstrings accordingly.
(cl-generic-define-method, cl--generic-describe): Change `load-history'
format of cl-defmethods, so as not to confused methods with equal
specializers but different qualifiers.
* lisp/emacs-lisp/eieio-core.el (cl-generic-generalizers): Provide docstrings.

8 years agoMerge branch 'master' of git.savannah.gnu.org:/srv/git/emacs
Eli Zaretskii [Tue, 12 Jul 2016 13:19:18 +0000 (16:19 +0300)]
Merge branch 'master' of git.savannah.gnu.org:/srv/git/emacs

8 years agoDon't install keyboard hook when debugged on MS-Windows
Eli Zaretskii [Tue, 12 Jul 2016 13:18:06 +0000 (16:18 +0300)]
Don't install keyboard hook when debugged on MS-Windows

* src/w32fns.c (setup_w32_kbdhook): Don't install the keyboard
hook if we are being debugged.  This avoids hosing the debugger,
because the hook is global, and is called in the context of the
thread which installed it, and that thread is stopped when GDB has
control.  Reported by Fabrice Popineau <fabrice.popineau@gmail.com>.

8 years agoAmend CC Mode to handle big C++ raw strings correctly.
Alan Mackenzie [Tue, 12 Jul 2016 13:16:02 +0000 (13:16 +0000)]
Amend CC Mode to handle big C++ raw strings correctly.

Problems were caused by such a string spanning jit-lock chunks, and by a flaw
in the +-500 bytes boundaries imposed for macros.

* lisp/progmodes/cc-mode.el (c-extend-region-for-CPP): Check the +-500 byte
macro boundaries here.
(c-extend-font-lock-region-for-macros): Remove the check on the +-500 byte
lower boundary.  Fix the check on the upper boundary.

* lisp/progmodes/cc-fonts.el (c-font-lock-raw-strings): Handle the starting
point already being within a raw string.

* lisp/progmodes/cc-engine.el (c-raw-string-pos)
(c-depropertize-raw-strings-in-region, c-after-change-re-mark-raw-strings):
Modify regexp element "\\{,16\\}" to "\\{0,16\\}" for greater compatibility
with other Emacsen.

8 years ago* lisp/mouse.el (mouse-select-region-move-to-beginning): Add :group.
Stephen Berman [Tue, 12 Jul 2016 08:43:24 +0000 (10:43 +0200)]
* lisp/mouse.el (mouse-select-region-move-to-beginning): Add :group.

8 years agoCleanup tooltips
Dmitry Antipov [Tue, 12 Jul 2016 06:16:26 +0000 (09:16 +0300)]
Cleanup tooltips

* src/dispextern.h (toplevel): Remove 'tip_frame' and 'tip_window' decls.
* src/frame.h (struct frame): New bitfield to indicate tooltip frame.
(FRAME_TOOLTIP_P): New macro.
* src/frame.c (make_frame): Mark new frame as regular frame by default.
(Fframe_list, delete_frame): Redesign to use FRAME_TOOLTIP_P.
(syms_of_frame): Don't DEFSYM 'Qtooltip' but use 'Qtooltip_timer'
and 'Qtooltip_parameters' instead.
* src/gtkutil.h (toplevel): Add 'xg_hide_tip' decl.
* src/gtkutil.c (xg_hide_tip): New function.
(xg_hide_tooltip): Adjust to cancel GTK event loop timeout if needed.
* src/menu.c (Fx_popup_menu): Adjust call to Fx_hide_tip.
* src/nsfns.c (toplevel): Remove 'tip_frame' leftover.
* src/w32fns.c (unwind_create_tip_frame): Remove.
(w32_display_monitor_attributes_list)
(w32_display_monitor_attributes_list_fallback): Use FRAME_TOOLTIP_P.
(toplevel): Remove 'tip_frame', 'tip_window' and 'last_show_tip_args'.
(x_create_tip_frame): Use do_unwind_create_frame.  Mark new frame
as a tooltip frame and record it using appropriate display info.
(x_hide_tooltip): Add frame arg.
(Fx_show_tip): Adjust to avoid globals, store tooltip parameters among
base frame parameters, store tooltip hide timer among tooltip frame
parameters.
(Fx_hide_tip): Add frame arg, hide tooltips on all displays by default.
(syms_of_w32fns): Don't DEFSYM 'Qtip_frame', don't initialize
and GC-protect 'tip_timer', 'tip_frame' and 'last_show_tip_args'.
* src/w32term.c (w32_read_socket): Extract tooltip window id from
per-display data.  Use FRAME_TOOLTIP_P where appropriate.
(x_new_font): Use FRAME_TOOLTIP_P.
(x_free_frame_resources): Reset pointer to tooltip frame.
* src/w32term.h (struct w32_display_info): New member 'w32_tooltip_frame'.
* src/xdisp.c (init_iterator, x_consider_frame_title, prepare_menu_bars):
Use FRAME_TOOLTIP_P.
* src/xfns.c (x_make_monitor_attribute_list)
(Fx_display_monitor_attributes_list): Likewise.
(unwind_create_tip_frame): Remove.
(toplevel): Remove 'tip_frame', 'tip_window' and 'last_show_tip_args'.
(x_create_tip_frame): Use do_unwind_create_frame.  Mark new frame
as a tooltip frame and record it using appropriate display info.
(x_hide_tooltip): Add frame arg.
(Fx_show_tip): Adjust to avoid globals, store tooltip parameters among
base frame parameters, store tooltip hide timer among tooltip frame
parameters.  To hide GTK system tooltip, use timeout hooked into GTK
event loop.
(Fx_hide_tip): Add frame arg, hide tooltips on all displays by default.
(syms_of_xfns): Don't DEFSYM 'Qtip_frame', don't initialize
and GC-protect 'tip_timer', 'tip_frame' and 'last_show_tip_args'.
* src/xterm.c (handle_one_xevent): Extract tooltip window id from
per-display data.  Use FRAME_TOOLTIP_P where appropriate.
(x_new_font, x_set_window_size): Use FRAME_TOOLTIP_P.
(x_free_frame_resources): Reset pointer to tooltip frame.
* src/xterm.h (struct x_display_info): New member 'x_tooltip_frame'.
(struct x_output) [USE_GTK_TOOLTIP]: New member 'ttip_timeout'.

8 years ago* src/fns.c (syms_of_fns): Leave `features' lexically scoped
Stefan Monnier [Tue, 12 Jul 2016 01:33:43 +0000 (21:33 -0400)]
* src/fns.c (syms_of_fns): Leave `features' lexically scoped

8 years agoTest mapcan
Mario Lang [Mon, 11 Jul 2016 19:43:48 +0000 (21:43 +0200)]
Test mapcan

* test/src/fns-tests.el (fns-tests-mapcan): New test.

8 years ago; Remove parens from sentence in docstring.
Mark Oteiza [Mon, 11 Jul 2016 18:37:54 +0000 (14:37 -0400)]
; Remove parens from sentence in docstring.

8 years agoPrevent to apply funcall on t
Stefan Monnier [Mon, 11 Jul 2016 15:55:04 +0000 (00:55 +0900)]
Prevent to apply funcall on t

* lisp/vc/ediff-util.el (ediff-really-quit): Ignore the global part of
'ediff-after-quit-hook-internal' hook (Bug#23933).

8 years agoIgnore angle mode while simplifying units
Tino Calancha [Mon, 11 Jul 2016 15:38:14 +0000 (00:38 +0900)]
Ignore angle mode while simplifying units

* lisp/calc/calc-forms.el (math-to-hms, math-from-hms):
Ignore value of 'calc-angle-mode' when 'math-simplifying-units'
is non-nil (Bug#23889).
* lisp/calc/calc-math.el (math-to-radians, math-from-radians)
(math-from-radians-2, math-to-radians-2): Idem.

8 years agoMerge branch 'master' of git.savannah.gnu.org:/srv/git/emacs
Eli Zaretskii [Mon, 11 Jul 2016 14:19:40 +0000 (17:19 +0300)]
Merge branch 'master' of git.savannah.gnu.org:/srv/git/emacs

8 years agoFix display of composed characters
Eli Zaretskii [Mon, 11 Jul 2016 14:18:11 +0000 (17:18 +0300)]
Fix display of composed characters

* src/xdisp.c (x_produce_glyphs): Fix off-by-one error in
iteration through composition glyphs.  (Bug#23938)

8 years agoFix composition bug caused by off-by-1 typo
Paul Eggert [Mon, 11 Jul 2016 14:14:33 +0000 (16:14 +0200)]
Fix composition bug caused by off-by-1 typo

* src/xdisp.c (x_produce_glyphs): Fix off-by-one typo when
computing composition glyph (Bug#23938).

8 years agoDired always read file system
Tino Calancha [Mon, 11 Jul 2016 05:34:49 +0000 (14:34 +0900)]
Dired always read file system

* dired.el (dired-always-read-filesystem): Add new option.
(dired-mark-files-containing-regexp): Use it (Bug#22694).
* doc/emacs/dired.texi: Mention it in the manual.
* test/lisp/dired-tests.el (dired-test-bug22694): Add test.
;* etc/NEWS: Add entry for this change.

8 years ago* src/macfont.m (mac_font_shape): Make sure that total_advance is increasing.
YAMAMOTO Mitsuharu [Mon, 11 Jul 2016 04:35:57 +0000 (13:35 +0900)]
* src/macfont.m (mac_font_shape): Make sure that total_advance is increasing.

8 years agoAvoid 'unused var' 'not left unused var' warnings
Tino Calancha [Mon, 11 Jul 2016 02:30:48 +0000 (11:30 +0900)]
Avoid 'unused var' 'not left unused var' warnings

* lisp/ibuffer.el (ibuffer-locked-buffer-p): Remove unused var 'char'.
Rename used var '_buffer' to 'cbuffer'.

* lisp/ibuf-ext.el (ibuffer-unmark-all): Rename used var '_mark'
to cmark'.

8 years ago* lisp/simple.el (shell-command, shell-command-on-region): Fix doc strings
Tino Calancha [Sun, 10 Jul 2016 17:47:28 +0000 (02:47 +0900)]
* lisp/simple.el (shell-command, shell-command-on-region): Fix doc strings

8 years agoAdd a note how to use `tramp-own-remote-path'
Michael Albinus [Sun, 10 Jul 2016 15:03:48 +0000 (17:03 +0200)]
Add a note how to use `tramp-own-remote-path'

* doc/misc/tramp.texi (Inline methods, External methods)
(Remote shell setup, Android shell setup)
(Frequently Asked Questions, Frequently Asked Questions):
Use @command and @samp consequently.
(Remote programs): The remote shell must support the -l
argument, in order to use `tramp-own-remote-path'.  (Bug#23914)

8 years agoRemove App Nap setting from Info.plist (bug#22993)
Alan Third [Sun, 10 Jul 2016 09:18:40 +0000 (10:18 +0100)]
Remove App Nap setting from Info.plist (bug#22993)

* nextstep/templates/Info.plist.in: Remove LSAppNapIsDisabled key since
it doesn't actually disable app nap.

8 years agoAn efficient built-in mapcan
Mario Lang [Sat, 9 Jul 2016 23:18:47 +0000 (01:18 +0200)]
An efficient built-in mapcan

A built-in version of `mapcan' avoids consing up (and GC'ing) the
intermediate list.

* src/fns.c (Fmapcan): New built-in.
(syms_of_fns): Define.

* lisp/emacs-lisp/cl.el (mapcan): Remove defalias.

* lisp/emacs-lisp/cl-extra.el (cl-mapcan): Use built-in `mapcan'
if only one sequence is provided.

* lisp/progmodes/hideif.el (hif-delimit):
* lisp/dired-aux.el (dired-do-find-regexp):
* lisp/woman.el (woman-parse-colon-path): Use `mapcan' instead of
`cl-mapcan'.

* lisp/woman.el (eval-when-compile): Require 'cl-lib only when
compiling.

* lisp/mouse.el (mouse-buffer-menu-map):
* lisp/net/pop3.el (pop3-uidl-dele):
* lisp/progmodes/gud.el (gud-jdb-build-source-files-list):
* lisp/cedet/semantic/db-find.el (semanticdb-fast-strip-find-results):
* lisp/cedet/semantic/symref/grep.el (semantic-symref-derive-find-filepatterns):
* lisp/gnus/nnmail.el (nnmail-split-it):
* lisp/gnus/gnus-sum.el (gnus-articles-in-thread):
* lisp/gnus/gnus-registry.el (gnus-registry-sort-addresses):
* lisp/gnus/gnus-util.el (gnus-mapcar): Use `mapcan'.

8 years agoDetect aliases to built-in functions
Tino Calancha [Sat, 9 Jul 2016 13:56:25 +0000 (22:56 +0900)]
Detect aliases to built-in functions

* lisp/help-fns.el (describe-function-1): Check for aliases
defined with (defalias alias (symbol-function built-in)) (Bug#23887).

* test/lisp/help-fns-tests.el (help-fns-test-bug23887): Untag as
failing this test.

8 years agoAvoid recursive detection of remote uid and gid in tramp-gvfs.el
Michael Albinus [Sat, 9 Jul 2016 12:20:07 +0000 (14:20 +0200)]
Avoid recursive detection of remote uid and gid in tramp-gvfs.el

* lisp/net/tramp-gvfs.el (tramp-gvfs-get-remote-uid-gid-in-progress):
New variable.
(tramp-gvfs-maybe-open-connection): Use it.

* test/lisp/net/tramp-tests.el (tramp-test18-file-attributes):
Reorder test.

8 years agoWrap around error in coreutil's ls
Jürgen Hötzel [Sat, 9 Jul 2016 12:19:12 +0000 (14:19 +0200)]
Wrap around error in coreutil's ls

* lisp/net/tramp-sh.el (tramp-sh-handle-insert-directory): Add switch
"--quoting-style=literal" if remote host supports quoting style.
Recent versions of coreutils changed default quoting style to
"--quoting=shell-escape".

8 years agoMinor tweaks of copying text properties when padding strings
Eli Zaretskii [Sat, 9 Jul 2016 08:01:17 +0000 (11:01 +0300)]
Minor tweaks of copying text properties when padding strings

* src/editfns.c (styled_format): Don't include padding on the left
in the properties at the beginning of the string.  (Bug#23897)

* test/src/editfns-tests.el (format-properties): Add tests for
faces when the string is padded on the left or on the right.

8 years agoMerge branch 'master' of git.sv.gnu.org:/srv/git/emacs
Mario Lang [Sat, 9 Jul 2016 05:06:53 +0000 (07:06 +0200)]
Merge branch 'master' of git.sv.gnu.org:/srv/git/emacs

8 years agoNo need to require the same feature twice.
Mario Lang [Sat, 9 Jul 2016 05:05:50 +0000 (07:05 +0200)]
No need to require the same feature twice.

* lisp/dired-aux.el (require 'cl-lib): Remove.

8 years agoTurn on lexical binding
Mark Oteiza [Sat, 9 Jul 2016 01:49:52 +0000 (21:49 -0400)]
Turn on lexical binding

* lisp/net/secrets.el (secrets-collection-handler): Use cl-pushnew.
(secrets-search-items, secrets-create-item): Use append.
(secrets-show-secrets): Remove unused binding.
(secrets-expand-item, secrets-tree-widget-after-toggle-function):
Ignore unused arguments.

8 years agoDerive secrets-mode from special-mode
Mark Oteiza [Sat, 9 Jul 2016 01:10:32 +0000 (21:10 -0400)]
Derive secrets-mode from special-mode

* lisp/net/secrets.el: Remove top-level secrets-mode hack.
(secrets-mode-map): New variable.  Add key bindings to n and p for
navigating lines.
(secrets-mode): Derive from special-mode.  Remove keymap code and
initialization code.  Do not record undo information.  Make
secrets-show-collections the local revert-buffer-function.
(secrets-show-collections): Change signature to satisfy revert-buffer.

8 years agoAdd a couple cells to lisp-prettify-symbols-alist
Mark Oteiza [Fri, 8 Jul 2016 21:12:54 +0000 (17:12 -0400)]
Add a couple cells to lisp-prettify-symbols-alist

* lisp/emacs-lisp/lisp-mode.el (lisp-prettify-symbols-alist): Add
"sqrt" and "not".

8 years agoDetect remote uid and gid in tramp-gvfs.el
Michael Albinus [Fri, 8 Jul 2016 20:44:11 +0000 (22:44 +0200)]
Detect remote uid and gid in tramp-gvfs.el

* lisp/net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name)
(tramp-gvfs-handler-mounted-unmounted)
(tramp-gvfs-connection-mounted-p):
Make "default-location" a connection property.
(tramp-gvfs-get-remote-uid, tramp-gvfs-get-remote-gid): New defuns.
(tramp-gvfs-maybe-open-connection): Use them.

8 years agoYet another fix for copying properties by 'format'
Eli Zaretskii [Fri, 8 Jul 2016 19:34:34 +0000 (22:34 +0300)]
Yet another fix for copying properties by 'format'

* src/textprop.c (extend_property_ranges): Accept an additional
argument OLD_END, and only extend the end of a property range if
its original end is at OLD_END; all the other ranges are left
intact.  (Bug#23897)
* src/editfns.c (styled_format): Pass the original length of the
string to 'extend_property_ranges'.
* src/intervals.h (extend_property_ranges): Adjust prototype.

* test/src/editfns-tests.el (format-properties): Add tests for
bug#23897.

8 years agoAllow selecting region with mouse to move point to beginning
Stephen Berman [Fri, 8 Jul 2016 15:36:55 +0000 (17:36 +0200)]
Allow selecting region with mouse to move point to beginning

* etc/NEWS: Mention new user option
`mouse-select-region-move-to-beginning'.

* doc/emacs/frames.texi (Mouse Commands): Add cross-reference
to the following.
(Word and Line Mouse): Describe how double-clicking mouse-1 to
activate region and `mouse-select-region-move-to-beginning'
affect point.

* lisp/mouse.el (mouse-select-region-move-to-beginning): New defcustom.
(mouse-set-point): Use it.  (Bug#23478)

8 years agoFix menu bar breakage
Stephen Berman [Fri, 8 Jul 2016 15:22:14 +0000 (17:22 +0200)]
Fix menu bar breakage

* lisp/menu-bar.el (menu-bar-showhide-scroll-bar-menu): Use backquoting
to prevent void variable errors, and fix typo (bug#23918).

8 years agoCopy buffer names to kill ring
Tino Calancha [Fri, 8 Jul 2016 08:22:56 +0000 (17:22 +0900)]
Copy buffer names to kill ring

* ibuf-ext.el (ibuffer-copy-buffername-as-kill): New command.
* lisp/ibuffer (ibuffer-mode-map): Bound it to 'B'.
;* etc/NEWS: Add entry for this new feature.

8 years agoRemove just input mark
Tino Calancha [Fri, 8 Jul 2016 02:22:34 +0000 (11:22 +0900)]
Remove just input mark

* lisp/ibuffer.el (ibuffer-unmark-all): When MARK is not ?\r remove
just MARK.

8 years agoIbuffer change marks
Tino Calancha [Fri, 8 Jul 2016 01:55:22 +0000 (10:55 +0900)]
Ibuffer change marks

* lisp/ibuffer.el (ibuffer-change-marks): New command.
(ibuffer-mode-map): Bind it to '* c'.
(ibuffer-mode-groups-popup): Update menus.
(ibuffer-mode): Update mode doc.
; * etc/NEWS: Add entry for this new feature.

8 years agoPrevent NS event loop being re-entered (bug#11049)
Alan Third [Sat, 25 Jun 2016 23:10:50 +0000 (00:10 +0100)]
Prevent NS event loop being re-entered (bug#11049)

* nsterm.m (ns_read_socket, ns_select): Return -1 if already in event
loop instead of aborting.

8 years agoFix some deprecated functions
Alan Third [Thu, 7 Jul 2016 19:42:11 +0000 (20:42 +0100)]
Fix some deprecated functions

* src/nsterm.m (firstRectForCharacterRange): In OS X >10.6 replace
convertBaseToScreen with convertRectToScreen.
* src/nsmenu.m (ns_update_menubar): Remove attachedMenu, deprecated in
OS X 10.2, and always seems to return nil.

8 years agoDisable App Nap (bug#22993)
Aaron Jensen [Thu, 7 Jul 2016 18:46:57 +0000 (19:46 +0100)]
Disable App Nap (bug#22993)

* nextstep/templates/Info.plist.in: Insert AppNap disable code.

Copyright-paperwork-exempt: yes

8 years agoMerge branch 'master' of git.sv.gnu.org:/srv/git/emacs
Michael Albinus [Thu, 7 Jul 2016 16:51:00 +0000 (18:51 +0200)]
Merge branch 'master' of git.sv.gnu.org:/srv/git/emacs

8 years agoFix an error in Tramp for rsync
Michael Albinus [Thu, 7 Jul 2016 16:50:24 +0000 (18:50 +0200)]
Fix an error in Tramp for rsync

* lisp/net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
Make it work for "rsync".
(tramp-make-copy-program-file-name): Apply `directory-file-name'.

8 years agoIbuffer: Mark locked buffers
Tino Calancha [Thu, 7 Jul 2016 16:34:35 +0000 (01:34 +0900)]
Ibuffer: Mark locked buffers

* lisp/ibuf-ext.el (ibuffer-locked-buffer-p): New defun.
(ibuffer-mark-by-locked): New command.
(ibuffer-mode-map): Bind it to '% L'; update menus.
(ibuffer-mode): Update mode doc.
;* etc/NEWS: Add NEWS entry for these changes and previous two commits.

8 years ago* lisp/ibuffer.el: Add face for locked buffers
Tino Calancha [Thu, 7 Jul 2016 16:15:54 +0000 (01:15 +0900)]
* lisp/ibuffer.el: Add face for locked buffers

8 years ago* lisp/ibuffer.el: Add mark for locked buffers
Tino Calancha [Thu, 7 Jul 2016 16:13:55 +0000 (01:13 +0900)]
* lisp/ibuffer.el: Add mark for locked buffers

8 years ago;* etc/NEWS (Ibuffer): Update entry according with last commit
Tino Calancha [Thu, 7 Jul 2016 15:57:40 +0000 (00:57 +0900)]
;* etc/NEWS (Ibuffer): Update entry according with last commit