mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-06 22:41:06 -08:00
Merge from origin/emacs-29
9ae1c2762dEUDC: Outline deprecation plans in NEWS6acf95cbeaFix admin/notes/tree-sitter/build-module/build.sh (bug#59...cc63c08697* doc/misc/eww.texi (Overview): Improve introduction.b8790e320eConsistent fontification of using-directives in csharp-ts...5257b9cda4; Rename c-ts-fontify-error to c-ts-mode--fontify-errorc6b454df33; Improve docstring of c-ts-mode--fontify-variable6187d001f2Fontify some keywords in type face in c-ts-modeb3847c0208; Minor cleanup in treesit.c40af27859e; * lib-src/etags.c (escape_shell_arg_string): Minor doc ...43b7e7efbfFix etags builds on non-Windows non-MS-DOS machines7e6d1d1c47; Fix last change in etags.c.01a4035c86Fix etags local command injection vulnerabilityed4734405dAvoid crashes in a build --without-modules70a2eb4a0bFix 'add-display-text-property' when OBJECT is non-nild58d1dd48aDo not run slow tests on EMBA9b9b39a2d8Lisp reader undefined behaviour excision # Conflicts: # etc/NEWS
This commit is contained in:
commit
82849f9a20
13 changed files with 187 additions and 75 deletions
|
|
@ -370,7 +370,8 @@ this defaults to the current buffer."
|
|||
(min end (point-max)))))
|
||||
(if (not (setq disp (get-text-property sub-start 'display object)))
|
||||
;; No old properties in this range.
|
||||
(put-text-property sub-start sub-end 'display (list prop value))
|
||||
(put-text-property sub-start sub-end 'display (list prop value)
|
||||
object)
|
||||
;; We have old properties.
|
||||
(let ((vector nil))
|
||||
;; Make disp into a list.
|
||||
|
|
@ -390,7 +391,7 @@ this defaults to the current buffer."
|
|||
(when vector
|
||||
(setq disp (seq-into disp 'vector)))
|
||||
;; Finally update the range.
|
||||
(put-text-property sub-start sub-end 'display disp)))
|
||||
(put-text-property sub-start sub-end 'display disp object)))
|
||||
(setq sub-start sub-end))))
|
||||
|
||||
;;;###autoload
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue