summaryrefslogtreecommitdiff
path: root/lisp
Commit message (Collapse)AuthorAgeFilesLines
* Avoid errors in 'image-dired-tag-thumbnail'Eli Zaretskii2024-05-082-24/+22
| | | | | | * lisp/image/image-dired.el (image-dired-tag-thumbnail) (image-dired-tag-thumbnail-remove): Move here from image-dired-tags.el. (Bug#70821)
* Fix indentation of if/else in 'csharp-ts-mode' (bug#70345)Jacob Leeming2024-04-251-1/+3
| | | | | | | | | | | * lisp/progmodes/csharp-mode.el (csharp-ts-mode--indent-rules): Fix indentation rules for 'if' and 'else'. * test/lisp/progmodes/csharp-ts-mode-tests.el: * test/lisp/progmodes/csharp-ts-mode-resources/indent.erts: New test files. Copyright-paperwork-exempt: yes
* Fix python-ts-mode built-in functions and attributes (bug#70478)Prateek Sharma2024-04-211-7/+9
| | | | | | | * lisp/progmodes/python.el (python--treesit-settings): Change the treesitter query to fetch the correct type of node for built-in functions and attributes and highlight them with corresponding font-lock face.
* * lisp/dnd.el (dnd-handle-movement): Avoid errors (bug#70311).Eli Zaretskii2024-04-141-2/+7
|
* ; Improve documentation of 'world-clock'Eli Zaretskii2024-04-101-2/+9
| | | | | * lisp/time.el (zoneinfo-style-world-list) (legacy-style-world-list): Doc fixes.
* Update go-ts-mode to support latest tree-sitter-go grammarYuan Fu2024-04-091-2/+11
| | | | | | | | | | tree-sitter-go changed method_spec to method_elem in https://github.com/tree-sitter/tree-sitter-go/commit/b82ab803d887002a0af11f6ce63d72884580bf33 * lisp/progmodes/go-ts-mode.el: (go-ts-mode--method-elem-supported-p): New function. (go-ts-mode--font-lock-settings): Conditionally use method_elem or method_spec in the query.
* Fix c++-ts-mode defun navigation (bug#65885)Yuan Fu2024-04-081-1/+3
| | | | | * lisp/progmodes/c-ts-mode.el (c-ts-base-mode): Add BOL and EOL marker in the regexp.
* Adapt Tramp versio (don't merge)Michael Albinus2024-03-311-4/+4
| | | | | | | * doc/misc/trampver.texi: * lisp/net/trampver.el: Change version to "2.6.3". (customize-package-emacs-version-alist): Adapt Tramp version integrated in Emacs 29.3.
* Fix warning-suppress for list type "warning type"Xuan Wang2024-03-311-2/+6
| | | | | | | | | | | | | | | | | | | | | | | | | Per the documentation of 'warning-suppress-types' and the implementation of 'warning-suppress-p', a warning type can be either a symbol or a list of symbols. The previous implementation could generate wrong 'warning-suppress-types': old behavior: type warning-suppress-types pkg -> '((pkg)) Correct (pkg subtype) -> '(((pkg subtype))) Incorrect Now we check whether type is a cons cell first. (Should not use listp here, as listp returns t for nil.) new behavior: type warning-suppress-types pkg -> '((pkg)) Correct (pkg subtype) -> '((pkg subtype)) Correct * lisp/emacs-lisp/warnings.el (warnings-suppress): Fix saving warning types in 'warning-suppress-types'. (Bug#70063) Copyright-paperwork-exempt: yes
* Make object init more robust (bug#69571)Theodor Thornhill2024-03-311-1/+9
| | | | | | * lisp/progmodes/csharp-mode.el (csharp-guess-basic-syntax): Make the regex same as before, but conditionally check other heuristics rather than crazy regex shenanigans.
* Avoid errors in Info-search-case-sensitively in DIR buffersEli Zaretskii2024-03-301-1/+1
| | | | | | * lisp/info.el (Info-search): Don't run the "try other subfiles" code if there are no subfiles. This happens, for example, in DIR files. (Bug#70058)
* Add typescript-ts-mode indentation for interface bodies (bug#70023)Noah Peart2024-03-281-0/+1
| | | | | | * lisp/progmodes/typescript-ts-mode.el (typescript-ts-mode--indent-rules): Add indentation rule for interface bodies.
* * Don't install unnecessary trampolines (bug#69573) (don't merge)Andrea Corallo2024-03-261-7/+9
| | | | | * lisp/emacs-lisp/comp.el (comp-subr-trampoline-install): Check that subr-name actually matches the target subr.
* * lisp/ldefs-boot.el: Regenerate.Eli Zaretskii2024-03-241-16/+29
|
* org--confirm-resource-safe: Fix prompt when prompting in non-file Org buffersIhor Radchenko2024-03-241-1/+1
| | | | | * lisp/org/org.el (org--confirm-resource-safe): When called from non-file buffer, do not put stray "f" in the prompt.
* org-file-contents: Consider all remote files unsafeIhor Radchenko2024-03-241-1/+5
| | | | | * lisp/org/org.el (org-file-contents): When loading files, consider all remote files (like TRAMP-fetched files) unsafe, in addition to URLs.
* org-latex-preview: Add protection when `untrusted-content' is non-nilIhor Radchenko2024-03-241-0/+19
| | | | | | | | | | | * lisp/org/org.el (org--latex-preview-when-risky): New variable controlling how to handle LaTeX previews in Org files from untrusted origin. (org-latex-preview): Consult `org--latex-preview-when-risky' before generating previews. This patch adds a layer of protection when LaTeX preview is requested for an email attachment, where `untrusted-content' is set to non-nil.
* * lisp/gnus/mm-view.el (mm-display-inline-fontify): Mark contents untrusted.Ihor Radchenko2024-03-241-0/+1
|
* * lisp/files.el (untrusted-content): New variable.Ihor Radchenko2024-03-241-0/+8
| | | | | The new variable is to be used when buffer contents comes from untrusted source.
* org-macro--set-templates: Prevent code evaluationIhor Radchenko2024-03-241-1/+8
| | | | | | | | | * lisp/org/org-macro.el (org-macro--set-templates): Get rid of any risk to evaluate code when `org-macro--set-templates' is called as a part of major mode initialization. This way, no code evaluation is ever triggered when user merely opens the file or when `mm-display-org-inline' invokes Org major mode to fontify mime part preview in email messages.
* ; * lisp/keymap.el (key-parse): Fix processing of "[TAB]". (Bug#69893)Eli Zaretskii2024-03-211-1/+1
|
* * Fix missing `comp-files-queue' update (bug#63415).Andrea Corallo2024-03-211-2/+3
| | | | | * lisp/emacs-lisp/comp.el (native--compile-async): Update `comp-files-queue' for real.
* Clarify description of format-spec truncationBasil L. Contovounesios2024-03-211-3/+3
| | | | | | | * doc/lispref/strings.texi (Custom Format Strings): Mention that precision specifier affects both '<' and '>' truncation (bug#69822). * lisp/format-spec.el (format-spec, format-spec--do-flags): Use same terminology as 'format', especially when referring to its behavior.
* ; * lisp/calendar/calendar.el: Remove extra space.Juri Linkov2024-03-211-1/+1
|
* ; * lisp/emacs-lisp/cl-macs.el (cl-labels): Fix stray diff marker.Robert Pluim2024-03-201-1/+1
|
* Tweak regexp for object initializers in csharp-mode (bug#69571)Theodor Thornhill2024-03-161-2/+5
| | | | | | | | | * lisp/progmodes/csharp-mode.el (csharp-guess-basic-syntax): Add handling to not consider ended statements as object init openers. * test/lisp/progmodes/csharp-mode-resources/indent.erts: New test resources. * test/lisp/progmodes/csharp-mode-tests.el: Add test for this particular issue.
* `term-mode': mention the keymap to add keybindings toKonstantin Kharlamov2024-03-161-2/+9
| | | | | | | | | A user typically expects a keymap for mode `foo' to be called `foo-mode-map'. term-mode has `term-mode-map' too, but for user-defined bindings to have effect they have to be put to `term-raw-map' instead. So let's mention that. * lisp/term.el (term-mode) (term-mode-map) (term-raw-map): Mention the keymaps to add keybindings to for `term-mode'. (Bug#69786)
* Fix 'shortdoc-copy-function-as-kill'Eli Zaretskii2024-03-161-1/+1
| | | | | * lisp/emacs-lisp/shortdoc.el (shortdoc-copy-function-as-kill): Fix handling of functions with no arguments. (Bug#69720)
* Improve documentation of 'edebug-print-*' variablesEli Zaretskii2024-03-161-4/+8
| | | | | | * lisp/emacs-lisp/edebug.el (edebug-print-length) (edebug-print-level): Fix doc strings and customization labels. Suggested by Matt Trzcinski <matt@excalamus.com>. (Bug#69745)
* ; Fix bibtex-biblatex-field-alist docstring typo.Basil L. Contovounesios2024-03-121-1/+1
|
* Fix 'with-sqlite-transaction'F. Jason Park2024-03-111-3/+4
| | | | | | | | | * lisp/sqlite.el (with-sqlite-transaction): Tuck misplaced body of else form back into feature-test control structure whence it escaped. (Bug#67142) * test/lisp/sqlite-tests.el: New file to accompany test/src/sqlite-tests.el.
* ; Improve documentation of image propertiesEli Zaretskii2024-03-071-4/+12
| | | | | | | | | * lisp/image.el (create-image, image-property): Add to do strings link to description of image properties in ELisp manual. * doc/lispref/display.texi (Defining Images): Fix example and add cross-reference to where image properties are described. (Image Descriptors): Add index entry.
* Fix typos in vnvni.el.Dan Jacobson2024-03-011-27/+27
| | | | | | * lisp/leim/quail/vnvni.el ("vietnamese-vni"): Fix typos. (Bug#69485) Copyright-paperwork-exempt: yes
* ; * lisp/vc/vc.el (vc-clone): Fix wording of doc string.Eli Zaretskii2024-02-271-5/+10
|
* * lisp/files.el (hack-one-local-variable): Use `set-auto-mode-0`Stefan Monnier2024-02-251-4/+2
| | | | This fixes bug#69373.
* Fix infinite recursion in gdb-mi.elEli Zaretskii2024-02-241-2/+4
| | | | | | * lisp/progmodes/gdb-mi.el: (gdb-clear-partial-output) (gdb-clear-inferior-io): Set inhibit-read-only, to avoid signaling errors in process filter. (Bug#69327)
* Fix 'help-quick-toggle'Eli Zaretskii2024-02-241-2/+10
| | | | | * lisp/help.el (help-quick-sections): Fix "kill-region" command. Add a doc string. (Bug#69345)
* * lisp/net/tramp.el (tramp-methods): Fix typo in docstring. (Bug#69294)Michael Albinus2024-02-211-2/+2
|
* ; * lisp/emacs-lisp/pcase.el (pcase-let*, pcase-let): Another doc fix.Eli Zaretskii2024-02-201-4/+4
|
* ; * lisp/emacs-lisp/pcase.el (pcase-let*, pcase-let): Doc fix.Eli Zaretskii2024-02-201-2/+2
|
* java-ts-mode: Indentation for opening brace on a separate lineDmitry Gutov2024-02-171-4/+9
| | | | | | | | * lisp/progmodes/java-ts-mode.el (java-ts-mode--indent-rules): Support putting the opening brace on a separate line (bug#67556). * test/lisp/progmodes/java-ts-mode-resources/indent.erts: Add a test.
* Removed decommissioned PGP keyserversPhilip Kaludercic2024-02-171-3/+0
| | | | | | | * lisp/epa-ks.el (epa-keyserver): Update the user option type of `epa-keyserver'. See https://mail.gnu.org/archive/html/emacs-devel/2023-11/msg00857.html.
* org: Fix security prompt for downloading remote resourceIhor Radchenko2024-02-171-1/+1
| | | | | | | | * lisp/org.el (org--confirm-resource-safe): Do not assume that resource is safe when user replies "n" (do not download). Reported-by: Max Nikulin <manikulin@gmail.com> Link: https://orgmode.org/list/upj6uk$b7o$1@ciao.gmane.io
* Revert "Update to Org 9.6.19"Eli Zaretskii2024-02-1712-50/+33
| | | | | This reverts commit 07a392f445eb21c5e4681027eee9d981300a4309. It was installed by mistake.
* Update to Org 9.6.19Kyle Meyer2024-02-1712-33/+50
|
* Improve directory prompt used by package-vc-checkoutJoseph Turner2024-02-141-2/+2
| | | | | * lisp/emacs-lisp/package-vc.el (package-vc--read-package-name): Use read-directory-name instead of read-file-name. (Bug#66114)
* Minor Tramp doc adaptionMichael Albinus2024-02-141-3/+3
| | | | | | | * doc/misc/tramp.texi (Frequently Asked Questions): Be more precise with FIDO2 keys. * lisp/net/tramp.el: Adapt comments.
* * Improve reproducibility of inferred values by native compAndrea Corallo2024-02-111-0/+2
| | | | | | * lisp/emacs-lisp/comp-cstr.el (comp-normalize-valset): Do not try to reorder conses using 'sxhash-equal' as its behavior is not reproducible over different sessions.
* Handle typescript ts grammar breaking change for function_expressionLoïc Lemaître2024-02-111-174/+188
| | | | | | | | | | | | | Starting from version 0.20.4 of the typescript/tsx grammar, "function" becomes "function_expression". The right expression is used depending on the grammar version. * lisp/progmodes/typescript-ts-mode.el (tsx-ts-mode--font-lock-compatibility-function-expression): New function (bug#69024). (typescript-ts-mode--font-lock-settings): Use it. Copyright-paperwork-exempt: yes
* Don't quote 't' in doc stringsEli Zaretskii2024-02-101-2/+2
| | | | | * lisp/outline.el (outline-minor-mode-use-buttons): Doc fix. Patch by Arash Esbati <arash@gnu.org>. (Bug#69012)