update packages

This commit is contained in:
2025-11-25 19:52:03 +01:00
parent 14ba373378
commit dbbae92267
280 changed files with 13451 additions and 11207 deletions

View File

@@ -9,7 +9,7 @@
;; URL: https://orgmode.org
;; Package-Requires: ((emacs "26.1"))
;; Version: 9.7.31
;; Version: 9.7.38
;; This file is part of GNU Emacs.
;;
@@ -3773,7 +3773,11 @@ After a match, the match groups contain these elements:
;; https://orgmode.org/list/B72CDC2B-72F6-43A8-AC70-E6E6295766EC@gmail.com
(defvar org-emphasis-regexp-components
'("-[:space:]('\"{" "-[:space:].,:!?;'\")}\\[" "[:space:]" "." 1)
"Components used to build the regular expression for emphasis.
"Components used to build the regular expression for FONTIFYING emphasis.
WARNING: This variable only affects visual fontification, but does not
change Org markup. For example, it does not affect how emphasis markup
is interpreted on export.
This is a list with five entries. Terminology: In an emphasis string
like \" *strong word* \", we call the initial space PREMATCH, the final
space POSTMATCH, the stars MARKERS, \"s\" and \"d\" are BORDER characters
@@ -12122,7 +12126,7 @@ which see."
(`lambda (assoc string org-last-tags-completion-table)) ;exact match?
(`(boundaries . ,suffix)
(let ((end (if (string-match "[-+:&,|]" suffix)
(match-string 0 suffix)
(match-beginning 0)
(length suffix))))
`(boundaries ,(or begin 0) . ,end)))
(`nil
@@ -19267,7 +19271,8 @@ With prefix arg UNCOMPILED, load the uncompiled versions."
(when (or (> marker (point-max)) (< marker (point-min)))
(widen))
(goto-char marker)
(org-fold-show-context 'org-goto))
(when (derived-mode-p 'org-mode)
(org-fold-show-context 'org-goto)))
(if bookmark
(bookmark-jump bookmark)
(error "Cannot find location"))))
@@ -20090,7 +20095,7 @@ matches in paragraphs or comments, use it."
(org-element-at-point)))
(type (org-element-type element))
(post-affiliated (org-element-post-affiliated element)))
(unless (< p post-affiliated)
(unless (or (not element) (< p post-affiliated))
(cl-case type
(comment
(save-excursion
@@ -21507,7 +21512,7 @@ Optional argument ELEMENT contains element at point."
(defun org-at-block-p nil
"Return t if cursor is at a block keyword."
(save-excursion
(move-beginning-of-line 1)
(forward-line 0)
(looking-at org-block-regexp)))
(defun org-point-at-end-of-empty-headline ()