Stefan Kangas
7fa975adbc
Update copyright year to 2025
...
Run "TZ=UTC0 admin/update-copyright".
2025-01-02 18:39:42 +01:00
Dmitry Gutov
afe776051e
[project-vc]: Make project-buffers more consistent with project-files
...
* lisp/progmodes/project.el (project-buffers):
Catch 'file-missing' error to continue anyway if .git does not
exist (bug#74826).
2025-01-02 18:58:40 +02:00
Stefan Monnier
a720458fdd
(elisp-flymake-byte-compile): Improve UX with debug-on-error
...
* lisp/progmodes/elisp-mode.el (elisp-flymake-byte-compile): Don't jump
into the debugger just because the content is not trusted.
2025-01-02 10:51:38 -05:00
Kohei Tsuruta
7acfea1935
; * doc/lispref/modes.texi (Customizing Keywords): Fix typo (bug#75193).
2024-12-30 16:01:02 +02:00
Kohei Tsuruta
d47a7d6f0f
; Add missing parameters in keymap doc
...
* doc/lispref/keymaps.texi (Controlling Active Maps): Add missing
parameters. (Bug#75174)
Copyright-paperwork-exempt: yes
2024-12-29 15:40:13 +02:00
Eli Zaretskii
07e9f27c3e
; * doc/misc/calc.texi: Fix makeinfo warnings (bug#75166).
2024-12-28 22:38:17 +02:00
Wilhelm Kirschbaum
43a8f0de5e
Always match underscore variables for elixir-ts-mode
...
The code comment is invalid, as it is common to treat any _variable as a
comment.
* lisp/progmodes/elixir-ts-mode.el (elixir-ts-font-lock-settings):
Add ":override t" to comment identifier match. (Bug#75156)
2024-12-28 17:37:38 +01:00
Eli Zaretskii
2ba6387d1d
; Fix inaccuracy in ELisp Reference manual
...
* doc/lispref/objects.texi (Basic Char Syntax): Fix inaccurate
wording. (Bug#75113)
2024-12-28 14:04:26 +02:00
Eli Zaretskii
8ac6a17880
; * etc/PROBLEMS: Mention problems with XPM support in GDK (bug#75018).
2024-12-28 13:54:45 +02:00
Wilhelm Kirschbaum
624322d5f6
Add missing fontification matches for elixir-ts-mode
...
* lisp/progmodes/elixir-ts-mode.el (elixir-ts--font-lock-settings): Add
matches for missing tokens and fix atom type face. (Bug#75156)
2024-12-28 09:42:09 +01:00
Stefan Kangas
5bafb11b40
; Fix copyright year
2024-12-28 02:24:07 +01:00
Stefan Kangas
186ea40732
Don't start docstrings with "This function" or similar
...
* lisp/calculator.el (calculator-add-operators):
* lisp/erc/erc-backend.el (erc-server-ping-handler):
* lisp/erc/erc-log.el (erc-generate-log-file-name-with-date):
(erc-generate-log-file-name-short):
* lisp/erc/erc-track.el (erc-track-shorten-function):
* lisp/eshell/em-smart.el (eshell-where-to-jump):
* lisp/eshell/esh-mode.el (eshell-begin-on-new-line):
* lisp/gnus/gnus-art.el (gnus-prompt-before-saving):
* lisp/mail/supercite.el (sc-cite-region-limit):
* lisp/net/nsm.el (network-security-protocol-checks):
* lisp/org/org-element.el
(org-element--cache-avoid-synchronous-headline-re-parsing):
* lisp/progmodes/hideif.el (hif-merge-ifdef-region):
* lisp/progmodes/modula2.el (m2-indent):
* lisp/progmodes/xscheme.el (xscheme-running-p):
(xscheme-control-g-disabled-p):
* lisp/tab-bar.el (tab-bar--event-to-item):
* lisp/which-key.el (which-key--hide-popup): Don't start docstrings with
"This function" or "This variable".
2024-12-26 21:02:45 +01:00
Stefan Kangas
cb8ce2e68b
Enable indent-tabs-mode in obj-c-mode
...
* .dir-locals.el (obj-c-mode): Enable indent-tabs-mode.
2024-12-26 16:10:25 +01:00
john muhl
54f3513709
Fix comment indent in 'lua-ts-mode' and old grammar
...
* lisp/progmodes/lua-ts-mode.el (lua-ts--simple-indent-rules):
Improve multi-line comment indention for pre-0.0.19 grammars that
used a different structure for comment start/end markers.
(Bug#75107)
2024-12-26 11:01:49 +02:00
Corwin Brust
8b95549e90
* admin/nt/dist-build/build-dep-zips.py: (deps src) handle zst
...
This patch fixes various problems preventing this script from
working. The job of this script is to collect Emacs' dependanicies and
the (MSYS2/MinGW64) source archives for dependancies (including 2nd
etc. order dependancies) into zip archives. GPL requires distributing such
archives (along with Emacs' own sources) when distributing GPL binaries.
Most principle of the changes is support for MSYS2 "w64" source archives
in zst format; previously this script assumed all sources were available
as tar.gz files. Additionaly several DLLs are added to list of
required, including sqllite3 and tree-sitter.
In general this is a maintaince fix to ensure others have access to the
code used to create pretest (and, presumably release) version of Emacs
30. Additional changes are required to progmatically identify changes
in Emacs' dependancies (e.g. after building a new Emacs binary for
distribution). There is commented out code to this effect in the
changes I've installed which did work, for a brief period in time; I
suspect some changes in MSYS2 made it more difficult (or impossible?) to
invoke the MSYS2 shell (under which this python script must run) from
the MINGW64 (under which Emacs is built). I may resort to a powershell
script as a way to orchistrate/invoke both MSYS2 and MING64 but I'm
currently still messing with a Makefile based approach (which would run
under MINGW64), in any event I believe we're all agreed this script
must interigate Emacs to create the "starting list" of dependancies to
include as a way to resolve this issue (missing/incorrect deps are
frequent source of broken binary releases). (bug#65206)
2024-12-24 23:55:21 -06:00
Eli Zaretskii
8064b2a679
Document undocumented completion commands
...
* src/minibuf.c (Fread_from_minibuffer):
* lisp/minibuffer.el (minibuffer-complete-history)
(minibuffer-complete-defaults): Doc fixes.
* doc/emacs/mini.texi (Completion Commands): Fix markup, style of
describing commands, and indexing. Document 'C-x UP' and 'C-x
DOWN'.
2024-12-24 21:25:02 +02:00
Corwin Brust
c29b798537
; etc/w32-feature.el (harfbuzz): improve test
...
This enable the tests to be used with batch (Bug#68919), e.g.
emacs.exe -l etc/w32-feature.el --batch -eval \
'(ert-run-tests-batch-and-exit)'
2024-12-23 21:20:47 -06:00
Corwin Brust
0e43e35f96
* admin/nt/dist-build/emacs.nsi: (Uninstall) delete only one Emacs
...
Previously, the uninstaller would recursively, unconditionally, remove
the parent folder in which Emacs was installed (the folder selected by
when running the installer), into which the installer places a folder
named for the given release (e.g. emacs-30.1). This was a problem
during uinstalation when the selected folder contained other versions of
Emacs the user did not wish to remove. Additionally, deleting Start Menu
short-cuts did not work (bug#68756).
Some installer language now better reflects that users are not
required to "Accept" the GNU Public License in order to use (etc.)
Emacs (bug#67667).
Users selections related to where to create (or not create) Start Menu
shortcuts are no longer ignored. (bug#75013)
Emacs (as installed by the installer) can now be uninstalled via
Windows' Add/Remove Progrms Control Panel.
The uninstaller will now remove (empty) parent folders, both under
Program Files and (when creation of shortcuts is enabled) under the
select Start Menu location.
2024-12-22 23:08:08 -06:00
Eli Zaretskii
b83cd8a8fb
; * etc/tutorials/TUTORIAL.ko: Fix the beginning.
2024-12-22 14:02:25 +02:00
Eli Zaretskii
41caccc488
; * etc/publicsuffix.txt: Update from upstream.
2024-12-22 13:50:41 +02:00
Eli Zaretskii
e6fb18406e
; Fix refcards
...
* etc/refcards/sk-survival.tex (section{Značky (tags)}):
* etc/refcards/sk-refcard.tex (section{Tagy}):
* etc/refcards/ru-refcard.tex (section{Теги}):
* etc/refcards/pt-br-refcard.tex (section{Tags}):
* etc/refcards/pl-refcard.tex (section{Tags}):
* etc/refcards/fr-survival.tex (section{Marqueurs}):
* etc/refcards/fr-refcard.tex (section{Tags}):
* etc/refcards/de-refcard.tex (section{Tags}):
* etc/refcards/cs-survival.tex (section{Značky (tags)}):
* etc/refcards/cs-refcard.tex (section{Tagy}):
* etc/refcards/survival.tex (section{Tags}):
* etc/refcards/refcard.tex (section{Tags}): Fix 'M-,' and 'M-*'.
2024-12-22 13:43:07 +02:00
Eli Zaretskii
14e791f9ba
; Update acknowledgments for Emacs 30
...
* admin/release-process: Suggest a command to compare source
trees.
* doc/emacs/emacs.texi (Acknowledgments):
* doc/emacs/ack.texi (Acknowledgments): Add authors of new stuff
in Emacs 30.
2024-12-22 12:55:46 +02:00
Eli Zaretskii
861b7864fc
; Fix node name in emacs-lisp-intro.texi
...
* doc/lispintro/emacs-lisp-intro.texi
(Lexical vs Dynamic Binding Example): Renamed from "... vs. ...",
to avoid using period in node names.
2024-12-22 12:11:46 +02:00
Eli Zaretskii
77243ba5be
; Update version tags of defcustoms
...
* admin/release-process: Expand on 'cusver-check'.
* lisp/editorconfig.el (editorconfig-indentation-alist)
(editorconfig-trim-whitespaces-mode):
* lisp/eshell/em-cmpl.el (eshell-cmpl-remote-file-ignore):
* lisp/eshell/esh-ext.el (eshell-explicit-remote-commands):
* lisp/gnus/nnfeed.el (nnfeed-date-format):
* lisp/net/newst-ticker.el (newsticker-ticker-period):
* lisp/progmodes/cc-vars.el (c-warn-ids-with-dollar):
* lisp/progmodes/cperl-mode.el (cperl-fontify-trailer):
* lisp/progmodes/eglot.el (customize-package-emacs-version-alist)
(eglot-events-buffer-config, eglot-confirm-server-edits)
(eglot-prefer-plaintext):
* lisp/progmodes/flymake.el (customize-package-emacs-version-alist):
* lisp/progmodes/ruby-mode.el (ruby-rubocop-use-bundler):
* lisp/progmodes/verilog-mode.el
(verilog-indent-ignore-multiline-defines)
(verilog-indent-ignore-regexp, verilog-indent-class-inside-pkg)
(verilog-align-decl-expr-comments)
(verilog-align-comment-distance, verilog-align-assign-expr)
(verilog-align-typedef-regexp, verilog-align-typedef-words)
(verilog-fontify-variables):
* lisp/register.el (register-preview-display-buffer-alist):
* lisp/vc/vc-annotate.el (vc-annotate-use-short-revision): Add
missing :version tags and additions to
'customize-package-emacs-version-alist' as appropriate.
2024-12-22 12:06:38 +02:00
Eli Zaretskii
fe2ac33bae
;* doc/misc/efaq.texi (New in Emacs 30): Mention 'trusted-contents'.
2024-12-22 10:43:57 +02:00
Michael Albinus
8fb884f0dc
; * etc/NEWS: Fix wording.
2024-12-22 09:31:06 +01:00
Michael Albinus
e281355a5e
Improve D-Bus and Tramp manual
...
* doc/misc/dbus.texi (Overview):
* doc/misc/tramp.texi (GVFS-based methods): Describe, how the
feature can be checked at runtime. (Bug#75004)
2024-12-22 09:30:47 +01:00
Eli Zaretskii
5e97079cc7
; Fix call to 'decode_string_utf_8' in #ifdef'ed-away code
...
* src/coding.c (Finternal_decode_string_utf_8): Fix calling
sequence of 'decode_string_utf_8' to adapt to changes in the
latter's signature.
2024-12-21 14:12:14 +02:00
Eli Zaretskii
6902673b5b
; Improve commentary in calendar.el
...
* lisp/calendar/calendar.el: Expand the commentary. Suggested by
Richard Lawrence <rwl@recursewithless.net>. (Bug#74965)
2024-12-21 13:00:05 +02:00
john muhl
08b62132dd
Add 'lua-ts-mode' to 'interpreter-mode-alist'
...
* lisp/progmodes/lua-ts-mode.el: Enable 'lua-ts-mode' for Lua
scripts based on their interpreter line. (Bug#74951)
2024-12-21 12:53:21 +02:00
Richard Lawrence
d8ffcf2fba
Document representation of dates in calendar.el
...
* lisp/calendar/calendar.el: Add a comment in file header
explaining how dates are represented.
2024-12-21 12:43:39 +02:00
Eli Zaretskii
faaa13ec76
Autoload 'shortdoc-help-fns-examples-function'
...
* lisp/help-fns.el (shortdoc-help-fns-examples-function):
Autoload, to allow adding it to
'help-fns-describe-function-functions' as advertised. (Bug#74995)
2024-12-20 22:06:06 +02:00
Andrea Corallo
68bcabf58a
* Update 'ldefs-boot.el' (don't merge)
...
* lisp/ldefs-boot.el: Update.
2024-12-19 22:29:25 +01:00
Andrea Corallo
9d93d717d5
* Bump Emacs version to 30.0.93
...
* nt/README.W32: Update Emacs version.
* msdos/sed2v2.inp: Likewise.
* exec/configure.ac: Likewise.
* configure.ac: Likewise.
* README: Likewise.
2024-12-19 22:27:30 +01:00
Andrea Corallo
8f8da2d785
; * ChangeLog.4: Update.
2024-12-19 00:43:27 +01:00
Andrea Corallo
49adcf30b0
; * etc/AUTHORS: Update.
2024-12-19 00:42:28 +01:00
Andrea Corallo
1381c6f959
* Update authors.el
...
* admin/authors.el (authors-aliases, authors-valid-file-names)
(authors-renamed-files-alist): Add entry.
2024-12-19 00:22:47 +01:00
Eli Zaretskii
5c0f3f5826
; * etc/NEWS: Mark unmarked entries.
2024-12-18 20:37:37 +02:00
Eli Zaretskii
8a0c9c234f
Document 'trusted-content
...
* doc/emacs/misc.texi (Host Security): Document 'trusted-content'.
* lisp/files.el (trusted-content): Doc fix.
* etc/NEWS: Mark its entry as "documented".
2024-12-18 19:57:13 +02:00
Robert Pluim
c6ce11b2a4
Mention network-interface-list in network-interface-info docstring
...
* src/process.c (Fnetwork_interface_info): Reference
'network-interface-list'.
2024-12-18 16:00:55 +01:00
Eli Zaretskii
a7905145f7
; * lisp/emacs-lisp/re-builder.el (reb-change-syntax): Fix typo.
2024-12-18 16:22:21 +02:00
Stefan Kangas
cde22c0201
Move NEWS items from unreleased 28.3 to released 29.1
...
* etc/NEWS.28: Remove empty sections for 28.3.
Move single pertinent item from here...
* etc/NEWS.29: ...to here.
2024-12-17 04:46:36 +01:00
Stefan Kangas
5686bb5b42
Improve browse-url-android-share docstring
...
* lisp/net/browse-url.el (browse-url-android-share): Clarify that
the option only applies to Android systems.
2024-12-17 04:38:18 +01:00
Stefan Kangas
92041e15f4
Minor doc fix for url-handler-regexp
...
* lisp/url/url-handlers.el (url-handler-regexp): Remove mention of
obsolete internal protocol "about" (i.e. url-about.el). Reflow.
2024-12-17 03:13:10 +01:00
Stefan Kangas
9fd96e2ab9
Improve reb-change-syntax docstring
...
* lisp/emacs-lisp/re-builder.el (reb-change-syntax): Improve docstring.
2024-12-16 22:17:36 +01:00
Stefan Monnier
b9dc337ea7
* lisp/files.el (trusted-content-p): Make :all work in non-file buffers
2024-12-16 09:27:01 -05:00
Robert Pluim
4b685bc4fc
; * src/process.c (Fnetwork_interface_list): Fix typo.
2024-12-16 13:35:51 +01:00
Robert Pluim
c14c489571
; * lisp/net/nsm.el (nsm-trust-local-network): Fix typo.
2024-12-16 13:34:19 +01:00
Yuan Fu
10f976300d
; Add some tree-sitter thing content to the manual
...
* doc/lispref/parsing.texi (User-defined Things): List "builtin"
things.
2024-12-15 21:40:49 -08:00
Stefan Monnier
55303a6bc0
* lisp/org/ox-texinfo.el (org-texinfo-template): Fix Info format (bug#74844)
2024-12-15 17:08:25 -05:00