]> git.eshelyaron.com Git - emacs.git/log
emacs.git
4 years agoTidy up NS color handling
Alan Third [Fri, 25 Sep 2020 16:12:51 +0000 (17:12 +0100)]
Tidy up NS color handling

* src/nsimage.m (COLORSPACE_NAME): New macro to find the current
colorspace.
([EmacsImage initFromXBM:width:height:fg:bg:reverseBytes:]):
([EmacsImage initForXPMWithDepth:width:height:]): Use the current
colorspace.
* src/nsterm.h (NSAppKitVersionNumber10_7):
(NSAppKitVersionNumber10_10): Define for macOS version checks.
* src/nsterm.m ([NSColor colorForEmacsRed:green:blue:alpha:]): Tidy up
the version checking.
([NSColor colorUsingDefaultColorSpace]): Tidy the version checking and
use [NSColor colorUsingColorSpace:] with GNUstep.

4 years agoRemove obsolete macOS support for NS font backend
Alan Third [Fri, 25 Sep 2020 13:32:56 +0000 (14:32 +0100)]
Remove obsolete macOS support for NS font backend

The ns font backend is has been disabled on macOS for a long time and
doesn't work correctly even if re-enabled.

* src/nsfont.m:
(ns_char_width):
(ns_ascii_average_width):
(ns_get_covering_families):
(nsfont_open):
(nsfont_close):
(nsfont_draw):
(ns_uni_to_glyphs):
(ns_glyph_metrics):
(EmacsGlyphStorage): Remove all Cocoa only code.
* src/nsterm.h (EmacsGlyphStorage): Remove.
(struct nsfont_info): Make GNUstep only.
* src/nsterm.m (ns_compute_glyph_string_overhangs): Remove GNUstep
only code from Cocoa builds.

4 years agoImplement internal border colors on NS (bug#41071)
Alan Third [Wed, 23 Sep 2020 12:57:50 +0000 (13:57 +0100)]
Implement internal border colors on NS (bug#41071)

* src/nsterm.m (ns_clear_under_internal_border): New function.
(ns_after_update_window_line): Use the correct background color.
(ns_redisplay_interface): Add ns_clear_under_internal_border.

4 years agostring-search robustness and documentation improvement (bug#43598)
Mattias Engdegård [Fri, 25 Sep 2020 15:00:17 +0000 (17:00 +0200)]
string-search robustness and documentation improvement (bug#43598)

* src/fns.c (Fstring_search): Check START-POS argument range.
Simplify logic.  Improve doc string.
* test/src/fns-tests.el (string-search): Add test cases.
* doc/lispref/strings.texi (Text Comparison): Elaborate.
* lisp/emacs-lisp/byte-opt.el (pure-fns): Mark string-search as pure.

4 years ago* CONTRIBUTE: Don't recommend action stamps
Noam Postavsky [Fri, 25 Sep 2020 14:10:56 +0000 (16:10 +0200)]
* CONTRIBUTE: Don't recommend action stamps

* CONTRIBUTE: Remove mention of the "action stamp" thing (bug#20609).

4 years agoPartially revert previous prolog.el cleanup
Lars Ingebrigtsen [Fri, 25 Sep 2020 14:06:35 +0000 (16:06 +0200)]
Partially revert previous prolog.el cleanup

* lisp/progmodes/prolog.el (prolog-font-lock-keywords): Partially
revert previous patch -- we want the prolog-warning-face symbol,
not its value.

4 years agoFix defcustom type in sql.el for sql-postgres-login-params
Lars Ingebrigtsen [Fri, 25 Sep 2020 13:42:35 +0000 (15:42 +0200)]
Fix defcustom type in sql.el for sql-postgres-login-params

* lisp/progmodes/sql.el (sql-login-params): Fix defcustom type to
match sql-postgres-login-params value.

4 years agoFix a defcustom type in gdb-mi.el
Lars Ingebrigtsen [Fri, 25 Sep 2020 13:38:53 +0000 (15:38 +0200)]
Fix a defcustom type in gdb-mi.el

* lisp/progmodes/gdb-mi.el (gdb-display-source-buffer-action): Fix
defcustom type to match the value.

4 years agoFix defcustom type in whitespace.el
Lars Ingebrigtsen [Fri, 25 Sep 2020 13:35:23 +0000 (15:35 +0200)]
Fix defcustom type in whitespace.el

* lisp/whitespace.el (whitespace-space-after-tab-regexp)
(whitespace-indentation-regexp): The first string here isn't a
regexp, it's a string (that's expanded with format to be a regexp).

4 years agoFix the defcustom type fix in python.el
Lars Ingebrigtsen [Fri, 25 Sep 2020 13:17:36 +0000 (15:17 +0200)]
Fix the defcustom type fix in python.el

* lisp/progmodes/python.el (python-pdbtrack-exit-command): Fix
defcustom type (bug#30990).

4 years agoFix some defcustom types
Lars Ingebrigtsen [Fri, 25 Sep 2020 13:15:21 +0000 (15:15 +0200)]
Fix some defcustom types

* lisp/whitespace.el (whitespace-style):
* lisp/gnus/message.el (message-screenshot-command):
* lisp/progmodes/compile.el (compilation-transform-file-match-alist):
* lisp/progmodes/gdb-mi.el (gdb-default-window-configuration-file):
* lisp/progmodes/python.el (python-pdbtrack-exit-command): Fix the
defcustom types.
* lisp/progmodes/sql.el (sql-password-wallet): Fix the value.

4 years agoAdd an expensive test for defcustom types
Lars Ingebrigtsen [Fri, 25 Sep 2020 12:46:36 +0000 (14:46 +0200)]
Add an expensive test for defcustom types

* admin/cus-test.el (cus-test-opts): Return the tests.

* test/lisp/custom-tests.el (check-for-wrong-custom-types): Test
custom types (bug#30990).

4 years agoMark string-search as being side effect free
Lars Ingebrigtsen [Fri, 25 Sep 2020 12:30:13 +0000 (14:30 +0200)]
Mark string-search as being side effect free

* lisp/emacs-lisp/byte-opt.el (side-effect-free-fns): Add
string-search.

4 years agoMake the Man completion code work better if man -k fails
Noam Postavsky [Fri, 25 Sep 2020 11:39:24 +0000 (13:39 +0200)]
Make the Man completion code work better if man -k fails

* lisp/man.el (Man-completion-table): Check the return code for
"man -k" and assume it failed if there's a non-zero exit code
(bug#16722).

4 years agoUse the char history in zap-up-to-char
Tino Calancha [Fri, 25 Sep 2020 11:25:08 +0000 (13:25 +0200)]
Use the char history in zap-up-to-char

* lisp/misc.el (zap-up-to-char): Use read-char-from-minibuffer
(bug#39154).

4 years agoFix replace-in-string infloop with empty pattern string (bug#43598)
Mattias Engdegård [Fri, 25 Sep 2020 11:15:42 +0000 (13:15 +0200)]
Fix replace-in-string infloop with empty pattern string (bug#43598)

* lisp/subr.el (replace-in-string): Raise an error if FROMSTRING is
empty.
* test/lisp/subr-tests.el (replace-in-string): Add test case.

4 years agoTweak updating the process mark in set-process-buffer
Lars Ingebrigtsen [Fri, 25 Sep 2020 09:47:59 +0000 (11:47 +0200)]
Tweak updating the process mark in set-process-buffer

* src/process.c (Fset_process_buffer): Only update the process
mark if we actually change the buffer.

4 years agoRemove more compat code from prolog.el
Lars Ingebrigtsen [Fri, 25 Sep 2020 09:37:45 +0000 (11:37 +0200)]
Remove more compat code from prolog.el

* lisp/progmodes/prolog.el (prolog-font-lock-keywords): Remove
compat test for a face that's always defined.

4 years ago* lisp/progmodes/ruby-mode.el (ruby-use-smie): Declare obsolete
Stefan Monnier [Fri, 25 Sep 2020 03:02:06 +0000 (23:02 -0400)]
* lisp/progmodes/ruby-mode.el (ruby-use-smie): Declare obsolete

(ruby-mode-map, ruby-mode-menu): Don't use ruby-for/backward-sexp any more.
(ruby-mode-variables): Always setup SMIE navigation.
Still obey `ruby-use-smie` for indentation.
(ruby-forward-sexp, ruby-backward-sexp): Mark as obsolete.

4 years agoRemove some XEmacs compat code from prolog.el
Lars Ingebrigtsen [Fri, 25 Sep 2020 01:46:59 +0000 (03:46 +0200)]
Remove some XEmacs compat code from prolog.el

* lisp/progmodes/prolog.el (prolog-replace-in-string): Remove XEmacs
compat code and make obsolete.
(prolog-guess-fill-prefix): Adjust callers.
(prolog-uncomment-region): Make obsolete.
(prolog-mode-syntax-table): syntax-propertize-rules is always defined.
(prolog-syntax-propertize-function): Ditto.
(prolog-face-name-p): Make into obsolete alias.
(prolog-font-lock-keywords): Adjust callers.

4 years agoClean up replace-in-string slightly
Lars Ingebrigtsen [Fri, 25 Sep 2020 00:27:01 +0000 (02:27 +0200)]
Clean up replace-in-string slightly

* lisp/subr.el (replace-in-string): Clean up previous fix slightly.

4 years agoFix previous replace-in-string rewrite
Lars Ingebrigtsen [Fri, 25 Sep 2020 00:07:05 +0000 (02:07 +0200)]
Fix previous replace-in-string rewrite

* lisp/subr.el (replace-in-string): Fix logic errors in previous
patch.

4 years agoFix replace-in-string multibyteness problems with string-search
Lars Ingebrigtsen [Thu, 24 Sep 2020 23:53:07 +0000 (01:53 +0200)]
Fix replace-in-string multibyteness problems with string-search

* lisp/subr.el (replace-in-string): Simplify by using the new
string-search function (bug#43598).

4 years agoAdd a new function 'string-search'
Lars Ingebrigtsen [Thu, 24 Sep 2020 23:52:10 +0000 (01:52 +0200)]
Add a new function 'string-search'

* doc/lispref/strings.texi (Text Comparison): Document it.
* src/fns.c (Fstring_search): New function.

4 years ago* lisp/help-fns.el (help-fns--first-release): Use etc/NEWS as well
Stefan Monnier [Thu, 24 Sep 2020 22:15:39 +0000 (18:15 -0400)]
* lisp/help-fns.el (help-fns--first-release): Use etc/NEWS as well

4 years agoUpdate a failing lisp test
Glenn Morris [Thu, 24 Sep 2020 18:56:09 +0000 (11:56 -0700)]
Update a failing lisp test

* test/lisp/emacs-lisp/lisp-tests.el (up-list-no-cross-string):
Update for recent "Don't signal scan-error" change.

4 years agoHorizontal scrolling for mouse wheel with Shift modifier (bug#43568)
Juri Linkov [Thu, 24 Sep 2020 19:25:03 +0000 (22:25 +0300)]
Horizontal scrolling for mouse wheel with Shift modifier (bug#43568)

* lisp/mwheel.el (mouse-wheel-scroll-amount): Change 'shift' default value
from 5 to 'hscroll'.  Add new option "Scroll horizontally" for 'hscroll'.
(mwheel-scroll): Handle value 'hscroll' and call mwheel-scroll-left-function
or mwheel-scroll-right-function.

* doc/emacs/frames.texi (Mouse Commands): Update for horizontal scrolling
with Shift modifier.

4 years agoSet mwheel default scroll value to 1 (bug#43380)
Theodor Thornhill [Thu, 24 Sep 2020 18:59:30 +0000 (21:59 +0300)]
Set mwheel default scroll value to 1 (bug#43380)

* lisp/mwheel.el (mouse-wheel-scroll-amount): Change default value 5 to 1
and shift default value from 1 to 5.
Default value is changed as discussed in etc/TODO.

4 years ago* lisp/simple.el (goto-line-read-args): More relevant default line number.
Juri Linkov [Thu, 24 Sep 2020 18:52:22 +0000 (21:52 +0300)]
* lisp/simple.el (goto-line-read-args): More relevant default line number.

4 years agoAdd skip condition for some dbus tests
Glenn Morris [Thu, 24 Sep 2020 18:47:11 +0000 (11:47 -0700)]
Add skip condition for some dbus tests

* test/lisp/net/dbus-tests.el (dbus-test01-type-conversion)
(dbus-test01-basic-types): Add skip for hydra.nixos.org failures.
; Standardize license notice

4 years agoMake set-process-buffer also update the process mark
Lars Ingebrigtsen [Thu, 24 Sep 2020 15:14:25 +0000 (17:14 +0200)]
Make set-process-buffer also update the process mark

* src/process.c (Fset_process_buffer): Update the process mark
(bug#43573).

4 years agoRefactor process mark setting
Lars Ingebrigtsen [Thu, 24 Sep 2020 15:08:30 +0000 (17:08 +0200)]
Refactor process mark setting

* src/process.c (update_process_mark): Make into its own function.
(Fmake_process, Fmake_pipe_process, Fmake_serial_process)
(connect_network_socket): Use it.

4 years agoAdd sanity check for Gnus groups that belong to no topic
dickmao [Thu, 24 Sep 2020 14:48:11 +0000 (16:48 +0200)]
Add sanity check for Gnus groups that belong to no topic

* lisp/gnus/gnus-topic.el (gnus-topic-change-level): Do not change
gnus-topic-alist when group is outside "topology" (bug#43582).

4 years agoFix last change in resize_mini_window
Eli Zaretskii [Thu, 24 Sep 2020 14:13:43 +0000 (17:13 +0300)]
Fix last change in resize_mini_window

* src/xdisp.c (resize_mini_window): Prevent recentering the
mini-window once its start position is computed.  (Bug#43572)

4 years agoFix recent simple.el compilation warning
Lars Ingebrigtsen [Thu, 24 Sep 2020 13:50:25 +0000 (15:50 +0200)]
Fix recent simple.el compilation warning

* lisp/simple.el (goto-line-relative): Suppress byte compilation
warning about goto-line.

4 years agoMinor Tramp cleanup
Michael Albinus [Thu, 24 Sep 2020 08:17:03 +0000 (10:17 +0200)]
Minor Tramp cleanup

* doc/misc/tramp.texi: Some stylistic changes.
(Frequently Asked Questions): Mention ProxyCommand and ProxyJump.

* lisp/net/tramp-sh.el (tramp-use-ssh-controlmaster-options):
Fix docstring.

4 years agoWrite Gnus active files with quotes around group names
Eric Abrahamsen [Wed, 23 Sep 2020 23:01:38 +0000 (16:01 -0700)]
Write Gnus active files with quotes around group names

* lisp/gnus/gnus-util.el (gnus-write-active-file): In case of group
names with spaces in them (see Bug#42823). Names are later read with
`read', so this should be quite robust.

4 years agoNew command goto-line-relative (bug#5042, bug#9917)
Juri Linkov [Wed, 23 Sep 2020 19:39:32 +0000 (22:39 +0300)]
New command goto-line-relative (bug#5042, bug#9917)

* lisp/simple.el (goto-line-read-args): New function with code from goto-line.
(goto-line): New arg RELATIVE.  Also use 'widen-automatically' to
leave all lines accessible in the narrowed buffer.
(goto-line-relative): New command.

* lisp/info.el (Info-mode-map): Remap 'goto-line' to 'goto-line-relative'.

* doc/emacs/basic.texi (Moving Point):
* doc/emacs/display.texi (Optional Mode Line): Mention goto-line-relative.

4 years agoRemove TODO to convert files to unit tests
Stefan Kangas [Wed, 23 Sep 2020 18:53:06 +0000 (20:53 +0200)]
Remove TODO to convert files to unit tests

* test/lisp/textmodes/css-mode-tests.el:
* test/lisp/progmodes/ruby-mode-tests.el: Remove TODO to convert test
files into unit tests.  The files are still useful for debugging.
Ref: https://lists.gnu.org/r/emacs-devel/2020-09/msg01906.html

4 years agoConvert some completion.el tests to ERT
Stefan Kangas [Wed, 23 Sep 2020 17:41:59 +0000 (19:41 +0200)]
Convert some completion.el tests to ERT

* test/lisp/completion-tests.el: New file.
* lisp/completion.el: Move commented out tests to completion-tests.el.

4 years agoConvert allout unit tests to ERT
Stefan Kangas [Wed, 23 Sep 2020 16:14:54 +0000 (18:14 +0200)]
Convert allout unit tests to ERT

* test/lisp/allout-tests.el: New file.
* lisp/allout.el (allout-run-unit-tests-on-load)
(allout-run-unit-tests): Remove.
(allout-tests-obliterate-variable)
(allout-tests-globally-unbound, allout-tests-globally-true)
(allout-tests-locally-true, allout-test-resumptions): Move to
allout-tests.el

* test/lisp/allout-widgets-tests.el: New file.
* lisp/allout-widgets.el (allout-widgets-run-unit-tests-on-load)
(allout-widgets-run-unit-tests): Remove.
(allout-test-range-overlaps): Move to allout-widgets-tests.el.

4 years ago* lisp/repeat.el: Remove obsolete comment.
Stefan Kangas [Wed, 23 Sep 2020 14:22:49 +0000 (16:22 +0200)]
* lisp/repeat.el: Remove obsolete comment.

4 years ago* test/lisp/net/dbus-tests.el (dbus-test01-basic-types): Adapt test.
Michael Albinus [Wed, 23 Sep 2020 17:57:03 +0000 (19:57 +0200)]
* test/lisp/net/dbus-tests.el (dbus-test01-basic-types): Adapt test.

4 years ago; * lisp/emacs-lisp/lisp.el: rename parameter in last change
Mattias Engdegård [Wed, 23 Sep 2020 16:08:32 +0000 (18:08 +0200)]
; * lisp/emacs-lisp/lisp.el: rename parameter in last change

4 years agoDon't signal scan-error when moving by sexp interactively
Mattias Engdegård [Fri, 18 Sep 2020 10:49:33 +0000 (12:49 +0200)]
Don't signal scan-error when moving by sexp interactively

* lisp/emacs-lisp/lisp.el (forward-sexp, backward-sexp, forward-list)
(backward-list, down-list, up-list, mark-sexp, kill-sexp)
(backward-kill-sexp): Remove unsightly scan-error when running
interactively and no further movement by sexp can be made (bug#43489).

4 years agoAllow the newline character in the character widget (Bug#15925)
Mauro Aranda [Wed, 23 Sep 2020 13:45:29 +0000 (15:45 +0200)]
Allow the newline character in the character widget (Bug#15925)

* lisp/wid-edit.el (widget-specify-field): Extend check for adding the
boundary overlay.  Plus, a minor comment indentation fix.
(character widget): Tweak the valid-regexp to allow the newline
character.

* test/lisp/wid-edit-tests.el (widget-test-character-widget-value)
(widget-test-editable-field-widget-value): New tests (bug#15925).

4 years agoImprove mark handling in gnus nnselect
Andrew G Cohen [Wed, 23 Sep 2020 11:47:15 +0000 (19:47 +0800)]
Improve mark handling in gnus nnselect

* lisp/gnus/nnselect.el (numbers-by-group,
nnselect-request-update-info, nnselect-push-info): Handle all three
mark types ('tuple, 'range, 'list) and general speedups.

4 years agoHandle escaped comment enders correctly in syntax.c, fixing bug #43558
Alan Mackenzie [Wed, 23 Sep 2020 08:50:11 +0000 (08:50 +0000)]
Handle escaped comment enders correctly in syntax.c, fixing bug #43558

This fixes forward-comment, scan-lists, and parse-partial-sexp.

* src/syntax.c (forw_comment): Detect and skip an escaped comment ender
(e.g. \*/ in C) when comment-end-can-be-escaped is non-nil.

4 years agoRun gnus-parse-headers-hook when retrieving nnselect headers
Andrew G Cohen [Wed, 23 Sep 2020 08:46:36 +0000 (16:46 +0800)]
Run gnus-parse-headers-hook when retrieving nnselect headers

* lisp/gnus/nnselect.el (nnselect-retrieve-headers): Run the
gnus-parse-headers-hook when retrieving headers in nnselect, just like
in a real group.

4 years agotest/src/xdisp-tests.el: New file
Stefan Monnier [Wed, 23 Sep 2020 03:55:45 +0000 (23:55 -0400)]
test/src/xdisp-tests.el: New file

4 years agoUse gnus-extra-headers in nnselect header parsing
Andrew G Cohen [Wed, 23 Sep 2020 00:25:56 +0000 (08:25 +0800)]
Use gnus-extra-headers in nnselect header parsing

* lisp/gnus/nnselect.el (nnselect-retrieve-headers): Bind
nnmail-extra-headers to gnus-extra-headers before parsing retrieved
headers.

4 years agoEnsure that the game directory exists before trying to write to it
Lars Ingebrigtsen [Tue, 22 Sep 2020 15:32:51 +0000 (17:32 +0200)]
Ensure that the game directory exists before trying to write to it

* lisp/play/gamegrid.el (gamegrid-add-score-insecure): Make the
directory if it doesn't exist (bug#37836).

4 years agoMake delete-pair only delete pairs that are part of insert-pair-alist
martin rudalics [Tue, 22 Sep 2020 14:44:15 +0000 (16:44 +0200)]
Make delete-pair only delete pairs that are part of insert-pair-alist

* lisp/emacs-lisp/lisp.el (delete-pair): Only delete pairs that
are part of `insert-pair-alist' (bug#4136).

4 years agoFix off-by-one error in eldoc--handle-docs
Lars Ingebrigtsen [Tue, 22 Sep 2020 14:20:05 +0000 (16:20 +0200)]
Fix off-by-one error in eldoc--handle-docs

* lisp/emacs-lisp/eldoc.el (eldoc--handle-docs): We have one extra
line to use if we don't show the truncation message (bug#43543).

4 years agoSpeed up shr-insert slightly
Lars Ingebrigtsen [Tue, 22 Sep 2020 14:02:37 +0000 (16:02 +0200)]
Speed up shr-insert slightly

* lisp/net/shr.el (shr-insert): Speed up regularising spaces --
the vast majority of the spaces are already OK, so transforming
" " to " " just takes time.

4 years agoFix filling problem in shr due to zero-width id tagging
Lars Ingebrigtsen [Tue, 22 Sep 2020 13:10:30 +0000 (15:10 +0200)]
Fix filling problem in shr due to zero-width id tagging

* lisp/net/shr.el (shr-descend): Fix problem with filling lines
that have a zero-width ID tag at the start.

4 years agoFix cursor display in mini-window under icomplete-mode
Eli Zaretskii [Tue, 22 Sep 2020 13:52:18 +0000 (16:52 +0300)]
Fix cursor display in mini-window under icomplete-mode

* src/xdisp.c (resize_mini_window): When we show only part of the
mini-window's contents, make sure the window-start position is at
the beginning of a screen line.  (Bug#43519)

4 years agoFix font-panel on NS (bug#43480)
David Reitter [Tue, 22 Sep 2020 12:38:16 +0000 (13:38 +0100)]
Fix font-panel on NS (bug#43480)

* lisp/term/ns-win.el (ns-respond-to-change-font): Set the font using
customize.

4 years agoRemove broken compat code from EDE
Stefan Kangas [Tue, 22 Sep 2020 11:40:40 +0000 (13:40 +0200)]
Remove broken compat code from EDE

* lisp/cedet/ede/detect.el: Remove broken Emacs 24.1 compat code.
This would never have worked, since the fallback library is missing.

4 years ago; * test/lisp/progmodes/ps-mode-tests.el: Add missing backslash
Mattias Engdegård [Tue, 22 Sep 2020 10:32:12 +0000 (12:32 +0200)]
; * test/lisp/progmodes/ps-mode-tests.el: Add missing backslash

4 years agoFix shellcheck warning
Stefan Kangas [Tue, 22 Sep 2020 00:33:42 +0000 (02:33 +0200)]
Fix shellcheck warning

* build-aux/update-subdirs: Fix issue indicated by the shellcheck
linter (warning SC2046).

4 years agoSupport shellcheck in compilation-mode
Stefan Kangas [Tue, 22 Sep 2020 00:04:15 +0000 (02:04 +0200)]
Support shellcheck in compilation-mode

* lisp/progmodes/compile.el
(compilation-error-regexp-alist-alist): Add shellcheck regexp.
* test/lisp/progmodes/compile-tests.el
(compile-tests--test-regexps-data):
(compile-test-error-regexps): Add test for shellcheck.
* etc/compilation.txt: Add shellcheck example.
* etc/NEWS: Announce the change.

foo

4 years agoRemove Emacs 23 compat code from cedet
Stefan Kangas [Mon, 21 Sep 2020 22:58:59 +0000 (00:58 +0200)]
Remove Emacs 23 compat code from cedet

* lisp/cedet/ede/proj-elisp.el (project-compile-target):
* lisp/cedet/semantic/bovine/grammar.el (bovine-grammar-expand-form):
* lisp/cedet/semantic/ede-grammar.el (project-compile-target):
Remove Emacs 23 compat code.

4 years agoRemove some Emacs 20 compat code
Stefan Kangas [Mon, 21 Sep 2020 22:57:22 +0000 (00:57 +0200)]
Remove some Emacs 20 compat code

* lisp/apropos.el (apropos-local-value):
* lisp/progmodes/antlr-mode.el (antlr-mode-menu):
* lisp/progmodes/idlwave.el (idlwave-attach-classes):
* lisp/textmodes/artist.el (artist-replace-chars): Remove Emacs 20
compat code.

4 years agoRemove some unnecessary compat code
Stefan Kangas [Mon, 21 Sep 2020 22:54:54 +0000 (00:54 +0200)]
Remove some unnecessary compat code

* test/lisp/emacs-lisp/ert-x-tests.el (ert-test-describe-test):
* test/lisp/wdired-tests.el (wdired-test-unfinished-edit-01):
Remove unnecessary compat code; these tests should never need to run
on older versions of Emacs.

4 years agoFix thinko in dired-change-marks
Stefan Kangas [Mon, 21 Sep 2020 22:35:05 +0000 (00:35 +0200)]
Fix thinko in dired-change-marks

* lisp/dired.el (dired-change-marks): Fix my previous broken attempt
to declare advertised-calling-convention.

4 years agoMove several completions from eshell to pcomplete (Bug#10585)
Stefan Kangas [Wed, 2 Sep 2020 00:45:39 +0000 (02:45 +0200)]
Move several completions from eshell to pcomplete (Bug#10585)

* lisp/eshell/em-unix.el (eshell-complete-hostname)
(pcomplete/ftp, pcomplete/ncftp, pcomplete/ping)
(pcomplete/rlogin, pcomplete/telnet, pcomplete/rsh):
Move from here...
* lisp/pcmpl-unix.el (pcmpl-unix-complete-hostname)
(pcomplete/ftp, pcomplete/ncftp, pcomplete/ping)
(pcomplete/rlogin, pcomplete/telnet, pcomplete/rsh):
...to here.  Make old names into aliases.

* lisp/eshell/esh-util.el (eshell-hosts-file)
(eshell-host-names, eshell-host-timestamp)
(eshell-read-hosts-file, eshell-read-hosts)
(eshell-read-host-names): Move from here...
* lisp/pcomplete.el (pcomplete-hosts-file)
(pcomplete--host-name-cache)
(pcomplete--host-name-cache-timestamp)
(pcomplete-read-hosts-file, pcomplete-read-hosts)
(pcomplete-read-host-names): ...to here.  Make old names into
aliases.

* lisp/eshell/em-unix.el (eshell-complete-host-reference): Update
caller.

4 years agoMove pcomplete/bcc32 from eshell to pcmpl-x (Bug#10585)
Stefan Kangas [Wed, 2 Sep 2020 00:34:43 +0000 (02:34 +0200)]
Move pcomplete/bcc32 from eshell to pcmpl-x (Bug#10585)

* lisp/eshell/em-xtra.el (pcomplete/bcc32, pcomplete/bcc): Move
from here...
* lisp/pcmpl-x.el (pcomplete/bcc32, pcomplete/bcc): ...to here.

4 years agoConvert a manual test for nxml-mode to unit test
Stefan Kangas [Mon, 21 Sep 2020 15:55:37 +0000 (17:55 +0200)]
Convert a manual test for nxml-mode to unit test

* test/manual/indent/nxml.xml: Delete file.
* test/lisp/nxml/nxml-mode-tests.el
(nxml-mode-test-comment-bug-17264): New test based on deleted file.

4 years agoConvert manual indent test for ruby-mode into unit test
Stefan Kangas [Mon, 21 Sep 2020 15:41:45 +0000 (17:41 +0200)]
Convert manual indent test for ruby-mode into unit test

* test/manual/indent/ruby.rb: Move from here...
* test/lisp/progmodes/ruby-mode-resources/ruby.rb: ...to here.

* test/lisp/progmodes/ruby-mode-tests.el
(ruby-mode-tests-data-dir): New variable.
(ruby--indent/converted-from-manual-test): New test.

4 years agoConvert manual indent test for scheme-mode into unit test
Stefan Kangas [Mon, 21 Sep 2020 15:32:51 +0000 (17:32 +0200)]
Convert manual indent test for scheme-mode into unit test

* test/manual/indent/scheme.scm: Delete file.
* test/lisp/progmodes/scheme-tests.el: New file with unit test for
scheme-mode based on deleted file.

4 years agoConvert manual indent test for ps-mode into unit test
Stefan Kangas [Mon, 21 Sep 2020 15:19:48 +0000 (17:19 +0200)]
Convert manual indent test for ps-mode into unit test

* test/manual/indent/ps-mode.ps: Delete file.
* test/lisp/progmodes/ps-mode-tests.el (ps-mode-test-indent):
New unit test based on deleted file.

4 years ago(json-encode-string): Strip properties to fix bug#43549
Sam Steingold [Mon, 21 Sep 2020 15:50:29 +0000 (11:50 -0400)]
(json-encode-string): Strip properties to fix bug#43549

4 years agoFix problem with ede-mode bugging out on non-existent files
Lin Sun [Mon, 21 Sep 2020 15:33:13 +0000 (17:33 +0200)]
Fix problem with ede-mode bugging out on non-existent files

* lisp/cedet/ede/emacs.el: Check whether the directory exists in
ede-emacs-find-in-directories before using it (bug#43547).

4 years agoFix recent change to window-max-chars-per-line
Lars Ingebrigtsen [Mon, 21 Sep 2020 15:24:02 +0000 (17:24 +0200)]
Fix recent change to window-max-chars-per-line

* lisp/window.el (window-max-chars-per-line):
line-number-display-width can return a floating point number, but
we want an integer (bug#43548).

4 years agoDoc string fix for gnus-summary-hide-thread
Lars Ingebrigtsen [Mon, 21 Sep 2020 15:20:14 +0000 (17:20 +0200)]
Doc string fix for gnus-summary-hide-thread

* lisp/gnus/gnus-sum.el (gnus-summary-hide-thread): Remove text
from doc string apparently copy-pasted from the function above.

4 years agoRemove a misleading message in gnus-summary-hide-thread
dickmao [Mon, 21 Sep 2020 15:19:14 +0000 (17:19 +0200)]
Remove a misleading message in gnus-summary-hide-thread

* lisp/gnus/gnus-sum.el (gnus-summary-hide-thread):
Jump past invisible thread instead of begging off with an out-of-band
diagnostic (bug#43538).

4 years agoConvert manual indent test for opascal-mode into unit test
Stefan Kangas [Mon, 21 Sep 2020 14:39:54 +0000 (16:39 +0200)]
Convert manual indent test for opascal-mode into unit test

* test/manual/indent/opascal.pas: Delete file.
* test/lisp/progmodes/opascal-tests.el: New file with unit test for
oposcal-mode based on deleted file.

4 years agoConvert manual indent test for lisp-mode into unit test
Stefan Kangas [Mon, 21 Sep 2020 14:23:24 +0000 (16:23 +0200)]
Convert manual indent test for lisp-mode into unit test

* test/manual/indent/lisp.lisp: Delete file.
* test/lisp/emacs-lisp/lisp-mode-tests.el (lisp-indent-defun):
New unit test based on deleted file.

4 years agoConvert manual indent test for elisp-mode into unit test
Stefan Kangas [Mon, 21 Sep 2020 14:13:53 +0000 (16:13 +0200)]
Convert manual indent test for elisp-mode into unit test

* test/manual/indent/elisp.el: Delete file.
* test/lisp/progmodes/elisp-mode-tests.el (elisp-indent-basic):
New unit test based on deleted file.

4 years ago; * test/lisp/textmodes/css-mode-tests.el: Add TODO.
Stefan Kangas [Mon, 21 Sep 2020 14:02:55 +0000 (16:02 +0200)]
; * test/lisp/textmodes/css-mode-tests.el: Add TODO.

4 years agoFix check in `newline' for blank lines
Stephen Berman [Mon, 21 Sep 2020 14:35:31 +0000 (16:35 +0200)]
Fix check in `newline' for blank lines

* lisp/simple.el (newline): Clarify doc string and fix check for
blank lines (bug#13810).

4 years agoFix line width in M-x term on -nw with line numbers
Lars Ingebrigtsen [Mon, 21 Sep 2020 14:10:13 +0000 (16:10 +0200)]
Fix line width in M-x term on -nw with line numbers

* lisp/window.el (window-max-chars-per-line): Make the line width
more correct in the presence of display-line-numbers-mode (bug#34513).

4 years agoAdd more isearch submatch faces
Lars Ingebrigtsen [Mon, 21 Sep 2020 13:56:55 +0000 (15:56 +0200)]
Add more isearch submatch faces

* doc/emacs/search.texi (Search Customizations): Adjust
documentation.
* lisp/isearch.el (search-highlight-submatches): Be a boolean.
(isearch-group-{6-9}): New faces.
(isearch-highlight): Use the variable as a boolean.

4 years ago; Fix more trivial typos
Stefan Kangas [Mon, 21 Sep 2020 13:41:43 +0000 (15:41 +0200)]
; Fix more trivial typos

4 years agoTweak how Man selects the previous window on failure
Juri Linkov [Mon, 21 Sep 2020 13:05:55 +0000 (15:05 +0200)]
Tweak how Man selects the previous window on failure

* lisp/man.el (Man-bgproc-sentinel): Ensure that we select the
correct previous window (bug#38164).

4 years ago; Fix typos
Stefan Kangas [Mon, 21 Sep 2020 11:29:10 +0000 (13:29 +0200)]
; Fix typos

4 years agoAllow disabling the verbose eldoc truncation message
Lars Ingebrigtsen [Mon, 21 Sep 2020 12:15:34 +0000 (14:15 +0200)]
Allow disabling the verbose eldoc truncation message

* doc/emacs/programs.texi (Lisp Doc): Document it.

* lisp/emacs-lisp/eldoc.el (eldoc-display-truncation-message): New
variable (bug#43543).
(eldoc--handle-docs): Use it.

4 years agoFix default value in checkboxes in eww
Nicolas Graner [Mon, 21 Sep 2020 11:57:31 +0000 (13:57 +0200)]
Fix default value in checkboxes in eww

* lisp/net/eww.el (eww-submit): Checked checkboxes need a default
value (bug#43542).

Copyright-paperwork-exempt: yes

4 years agoAdd D-Bus tests
Michael Albinus [Mon, 21 Sep 2020 11:41:30 +0000 (13:41 +0200)]
Add D-Bus tests

* doc/misc/dbus.texi (Type Conversion): Precise basic type values.

* lisp/net/dbus.el (dbus-register-property): Send signal directly.

* src/dbusbind.c (xd_signature): Accept non-nil objects for
DBUS_TYPE_BOOLEAN.

* test/lisp/net/dbus-tests.el (dbus-test01-basic-types)
(dbus-test01-compound-types): New tests.

4 years ago; * lisp/emacs-lisp/syntax.el (syntax-propertize-function): Doc fix.
Glenn Morris [Mon, 21 Sep 2020 00:20:08 +0000 (17:20 -0700)]
; * lisp/emacs-lisp/syntax.el (syntax-propertize-function): Doc fix.

4 years agoMerge from origin/emacs-27
Glenn Morris [Mon, 21 Sep 2020 00:18:16 +0000 (17:18 -0700)]
Merge from origin/emacs-27

02a31c9632 (origin/emacs-27) Minor improvement in the ELisp manual's ...
f750def778 Mention in PROBLEMS the problems with fonts and Uniscribe
082d8a21b1 Minor copyedits in 'line-height' documentation
5b23393bcc ; * src/frame.c (syms_of_frame) <make-pointer-invisible>: ...

4 years ago; Merge from origin/emacs-27
Glenn Morris [Mon, 21 Sep 2020 00:18:16 +0000 (17:18 -0700)]
; Merge from origin/emacs-27

The following commit was skipped:

c151797da9 * doc/misc/eww.texi: Document the `w' key's double function

4 years agoMerge from origin/emacs-27
Glenn Morris [Mon, 21 Sep 2020 00:18:16 +0000 (17:18 -0700)]
Merge from origin/emacs-27

df04f3e755 Fix a rare segfault in syntax.c
fd1fe1e1ec Add doc to syntax-propertize-function saying it must do a ...
fcd599bbea Minor copyedits of doc of 'with-silent-modifications'
759399cdb1 Improve documentation of 'max-mini-window-height'
3223302aa2 Use modern constant names for the NS pasteboard
985703d380 Fix doc string of 'toggle-menu-bar-mode-from-frame'
184a4977c7 Make vc-bzr tests work with brz 3.1 (bug#43314)

# Conflicts:
# lisp/emacs-lisp/syntax.el
# src/syntax.c

4 years ago; Merge from origin/emacs-27
Glenn Morris [Mon, 21 Sep 2020 00:10:50 +0000 (17:10 -0700)]
; Merge from origin/emacs-27

The following commit was skipped:

03093baf90 diff-no-select doc string clarification

4 years agoMerge from origin/emacs-27
Glenn Morris [Mon, 21 Sep 2020 00:10:50 +0000 (17:10 -0700)]
Merge from origin/emacs-27

694acda5f2 Fix compilation on TERMINFO platforms with GCC 10
f3373901e5 Fix the font-lock-debug-fontify NEWS entry

# Conflicts:
# etc/NEWS

4 years agoFix infloop when folding difficult headers in Message
Lars Ingebrigtsen [Sun, 20 Sep 2020 22:26:54 +0000 (00:26 +0200)]
Fix infloop when folding difficult headers in Message

* lisp/mail/rfc2047.el (rfc2047-fold-field): Return the end point.
* lisp/gnus/message.el (message--fold-long-headers): Use that to
reliably achieve progress.

4 years agoAllow not selecting messages in Gnus before resending
Lars Ingebrigtsen [Sun, 20 Sep 2020 22:22:22 +0000 (00:22 +0200)]
Allow not selecting messages in Gnus before resending

* lisp/gnus/gnus-msg.el (gnus-summary-resend-message): Allow not
selecting messages.  This is faster when resending huge spam messages.

4 years agoMake xterm-mouse-event check whether the click event is valid
Lars Ingebrigtsen [Sun, 20 Sep 2020 21:32:45 +0000 (23:32 +0200)]
Make xterm-mouse-event check whether the click event is valid

* lisp/xt-mouse.el (xterm-mouse-event): Defensively check against
a situation that shouldn't happen (but does) (bug#17378).

4 years agoC++ Mode: Modernize the fontification of "using"
Alan Mackenzie [Sun, 20 Sep 2020 19:57:05 +0000 (19:57 +0000)]
C++ Mode: Modernize the fontification of "using"

Since "using" is now used in three distinct ways in C++, write a special
function to handle these rather than attempting to adapt the old regular
expressions.

* lisp/progmodes/cc-fonts.el (c-font-lock-declarators): Amend to allow the
argument TYPES to be a face.  This face is given to the declarator being
processed.
(c-font-lock-single-decl): Make an argument to c-font-lock-declarators nil or
t, not merely nil or non-nil.
(c-complex-decl-matchers): Include c-font-lock-c++-using in the C++ value of
this variable.
(c-font-lock-c++-using): New function.

* lisp/progmodes/cc-langs.el (c-using-kwds, c-using-key): New lang
consts/vars.
(c-modifier-kwds): Remove "using" from the C++ value.