diff options
| author | Stefan Kangas | 2023-01-23 01:34:39 +0100 |
|---|---|---|
| committer | Stefan Kangas | 2023-01-23 01:34:39 +0100 |
| commit | 0805972e4cab3493d172edf2e303486d7c3cb386 (patch) | |
| tree | e806d00b1518012c00cdd6b8a0e29fac4c16bd5a /lisp/mh-e | |
| parent | 8febda46c458f11270350d0b68c69d8a58b59f8d (diff) | |
| parent | b3de81a6ee3b379fc1dfb9a071e469365081f438 (diff) | |
| download | emacs-0805972e4cab3493d172edf2e303486d7c3cb386.tar.gz emacs-0805972e4cab3493d172edf2e303486d7c3cb386.zip | |
Merge from origin/emacs-29
b3de81a6ee3 MH-E: handle removal of mhparam libdir from nmh 1.8
d63e1a89518 Use point-min to anchor top-level constructs (bug#60602)
34793337783 * lisp/org/ob-ruby.el: Fix outdated comments.
472f1425985 ; ruby-ts-mode: Add a Version tag
0cf053648a4 ; ruby-ts-mode: Update font-lock features list in Commentary
67ee627c38d (project-try-vc): Add string-start and string-end anchors...
06953fc8e1d Make `keymap-set-after' work for menus
dcd59457b48 Use `key-parse' in `keymap-lookup'
8904a26a9d2 Improve `keymap-set-after' documentation
c7e02eaa3d9 Handle after arg correctly in `keymap-set-after'
628b6241763 Don't load erc-goodies atop erc.el
40cf494b7ce ; * etc/NEWS: Fix typos.
6b2f85caa6c Make tree-sitter based modes optional
b56cf28b325 ; (ruby-ts--predefined-variables): Make it a little shorter
d94dc606a09 ruby-ts-mode: Claw back half of the performance drop from...
d0d34514097 (ruby-ts-mode): Rename 'builtin-functions' to 'builtin-fu...
d66ac5285f7 ruby-ts-mode: Highlight builtin methods
370b1ac99ec ; ruby-ts-mode.el: Add customize-group mention to commentary
7b7b2b95138 Fix c-ts-mode indent (bug#60873)
7ca71d66dc7 Fix various problems in treesit-explore-mode (bug#60800)
b7d6bb47ee5 ; * lisp/treesit.el (treesit-font-lock-fontify-region): M...
0c6bfeddb21 ; Update tree-sitter major mode manual
c289786886b ; Add commentary and dostring in c-ts-mode
# Conflicts:
# etc/NEWS
# lisp/progmodes/c-ts-mode.el
# lisp/progmodes/go-ts-mode.el
Diffstat (limited to 'lisp/mh-e')
| -rw-r--r-- | lisp/mh-e/mh-e.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/mh-e/mh-e.el b/lisp/mh-e/mh-e.el index 1640c23e002..34c809a5ecd 100644 --- a/lisp/mh-e/mh-e.el +++ b/lisp/mh-e/mh-e.el | |||
| @@ -764,6 +764,8 @@ This assumes that a temporary buffer is set up." | |||
| 764 | ;; Sample '-version' outputs: | 764 | ;; Sample '-version' outputs: |
| 765 | ;; mhparam -- nmh-1.1-RC1 [compiled on chaak at Fri Jun 20 11:03:28 PDT 2003] | 765 | ;; mhparam -- nmh-1.1-RC1 [compiled on chaak at Fri Jun 20 11:03:28 PDT 2003] |
| 766 | ;; install-mh -- nmh-1.7.1 built October 26, 2019 on build-server-000 | 766 | ;; install-mh -- nmh-1.7.1 built October 26, 2019 on build-server-000 |
| 767 | ;; "libdir" was deprecated in nmh-1.7 in favor of "libexecdir", and | ||
| 768 | ;; removed completely in nmh-1.8. | ||
| 767 | (let ((install-mh (expand-file-name "install-mh" dir))) | 769 | (let ((install-mh (expand-file-name "install-mh" dir))) |
| 768 | (when (mh-file-command-p install-mh) | 770 | (when (mh-file-command-p install-mh) |
| 769 | (erase-buffer) | 771 | (erase-buffer) |
| @@ -774,7 +776,8 @@ This assumes that a temporary buffer is set up." | |||
| 774 | (mh-progs dir)) | 776 | (mh-progs dir)) |
| 775 | `(,version | 777 | `(,version |
| 776 | (variant nmh) | 778 | (variant nmh) |
| 777 | (mh-lib-progs ,(mh-profile-component "libdir")) | 779 | (mh-lib-progs ,(or (mh-profile-component "libdir") |
| 780 | (mh-profile-component "libexecdir"))) | ||
| 778 | (mh-lib ,(mh-profile-component "etcdir")) | 781 | (mh-lib ,(mh-profile-component "etcdir")) |
| 779 | (mh-progs ,dir) | 782 | (mh-progs ,dir) |
| 780 | (flists ,(file-exists-p | 783 | (flists ,(file-exists-p |