diff options
| author | Eli Zaretskii | 2023-05-26 07:03:07 -0400 |
|---|---|---|
| committer | Eli Zaretskii | 2023-05-26 07:03:07 -0400 |
| commit | eacee3e536e06227b04c3b2f1ab3a1fe831b78dc (patch) | |
| tree | 312609c8ba58f30f8f187f4b1ab235a3c5aa82dc /lisp/progmodes/python.el | |
| parent | d6f717cd1dc373707440011a1552b78de2654bba (diff) | |
| parent | 6f6071c52616cc30bc28083688a3ad8d70ce713e (diff) | |
| download | emacs-eacee3e536e06227b04c3b2f1ab3a1fe831b78dc.tar.gz emacs-eacee3e536e06227b04c3b2f1ab3a1fe831b78dc.zip | |
Merge from origin/emacs-29
6f6071c5261 Avoid duplicate load-path entry when generating package a...
117b29c6f66 ; Improve documentation of Isearch command properties
a347b26cba2 Disable loading SQLite3 extensions when SQLite3 version i...
fe22bf503fb ; * lisp/progmodes/project.el (project-switch-use-entire-...
64dbbde3b77 Fix visiting HTML files encoded in iso-2022 variants
5c95239aca2 ; Fix markup of some treesit vars in Elisp manual.
6ad041939be Support 'isearch-allow-scroll' in 'pixel-scroll-precision...
ecccdc07a09 shr: allow moving between adjacent anchors
504ef25ef36 ; * etc/NEWS: Fix typos.
d6fb868cdd3 Fix multihop file name expansion in Tramp
dd3e4e14fdc Remove obsolete information from Gnus manual
2a5c946f879 Preserve mark in comint-history-isearch
6b60c8142ea Fix systemd unit completion for old versions of systemd
8c56557cd9d Fix Skeletons menu-bar menu in Python modes
58eb38cfb47 ; * etc/NEWS: missing definite article
cf403628692 ; * etc/NEWS: PGTK cannot switch to -new automatically (b...
ead3a2abbfc Fix loading SQLite extensions
a6bddd17658 ; * etc/NEWS: Fix typos.
f49fe936abd * etc/NEWS: Note dotimes loop variable scoping change (bu...
cec9333dc52 Fix c-ts-mode--top-level-declarator
f571e8f1bb6 Improve c-ts-mode font-lock for function names (bug#63390)
42a28ffdc27 * lisp/tab-bar.el: Don't use 'minibuffer-selected-window'...
8e61d23f71e Split windows horizontally in places that use split to cr...
459d08c7fe7 Fix tree-sitter test (bug#63481)
3bc5efb87e5 ; * lisp/emacs-lisp/benchmark.el (benchmark-progn): Fix d...
# Conflicts:
# etc/NEWS
Diffstat (limited to 'lisp/progmodes/python.el')
| -rw-r--r-- | lisp/progmodes/python.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index 4f57eda3cfc..1e3a708d85c 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el | |||
| @@ -6754,8 +6754,6 @@ implementations: `python-mode' and `python-ts-mode'." | |||
| 6754 | 6754 | ||
| 6755 | (setq-local prettify-symbols-alist python-prettify-symbols-alist) | 6755 | (setq-local prettify-symbols-alist python-prettify-symbols-alist) |
| 6756 | 6756 | ||
| 6757 | (python-skeleton-add-menu-items) | ||
| 6758 | |||
| 6759 | (make-local-variable 'python-shell-internal-buffer) | 6757 | (make-local-variable 'python-shell-internal-buffer) |
| 6760 | 6758 | ||
| 6761 | (add-hook 'flymake-diagnostic-functions #'python-flymake nil t)) | 6759 | (add-hook 'flymake-diagnostic-functions #'python-flymake nil t)) |
| @@ -6779,6 +6777,8 @@ implementations: `python-mode' and `python-ts-mode'." | |||
| 6779 | 6777 | ||
| 6780 | (add-hook 'which-func-functions #'python-info-current-defun nil t) | 6778 | (add-hook 'which-func-functions #'python-info-current-defun nil t) |
| 6781 | 6779 | ||
| 6780 | (python-skeleton-add-menu-items) | ||
| 6781 | |||
| 6782 | (when python-indent-guess-indent-offset | 6782 | (when python-indent-guess-indent-offset |
| 6783 | (python-indent-guess-indent-offset))) | 6783 | (python-indent-guess-indent-offset))) |
| 6784 | 6784 | ||
| @@ -6805,6 +6805,8 @@ implementations: `python-mode' and `python-ts-mode'." | |||
| 6805 | #'python--treesit-defun-name) | 6805 | #'python--treesit-defun-name) |
| 6806 | (treesit-major-mode-setup) | 6806 | (treesit-major-mode-setup) |
| 6807 | 6807 | ||
| 6808 | (python-skeleton-add-menu-items) | ||
| 6809 | |||
| 6808 | (when python-indent-guess-indent-offset | 6810 | (when python-indent-guess-indent-offset |
| 6809 | (python-indent-guess-indent-offset)) | 6811 | (python-indent-guess-indent-offset)) |
| 6810 | 6812 | ||