aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/python.el
diff options
context:
space:
mode:
authorEli Zaretskii2023-12-16 09:17:51 -0500
committerEli Zaretskii2023-12-16 09:17:51 -0500
commita1d3862c6240805bde997bb57f60fceb0fbccb85 (patch)
tree3f0a8b9a8b7bd132336945aaad085afb185baffd /lisp/progmodes/python.el
parent47b10d062df643da6ecc6fc3b6b1cbb668eebb39 (diff)
parentbf4ccb0be076d8b65498c56dedf0eee17cb3c24c (diff)
downloademacs-a1d3862c6240805bde997bb57f60fceb0fbccb85.tar.gz
emacs-a1d3862c6240805bde997bb57f60fceb0fbccb85.zip
Merge from origin/emacs-29
bf4ccb0be07 ; * lisp/term.el (term--xterm-paste): Fix last change. 0d9e2e448d9 ; * doc/lispref/functions.texi (Function Documentation): ... 791cc5065da Fix shaping of Sinhala text efcbf0b5abf Add use cases of (fn) documentation facility. c3331cb3659 Fix pasting into terminal-mode on term.el 5be94e2bce5 Fix opening directory trees from Filesets menu 6b6e770a1f5 Eglot: Add ruff-lsp as an alternative Python server ed8a8a5ba16 Fix symbol name in Multisession Variables examples 400ef15bdc3 js-ts-mode: Fix font-lock rules conflict c165247c300 Add indentation rules for bracketless statements in js-ts... 7f1bd69cd19 Fix c-ts-mode bracketless indentation for BSD style (bug#... e23068cb9a1 Add missing indent rules in c-ts-mode (bug#66152) d2c4b926ac2 Fix treesit-default-defun-skipper (bug#66711) 9874561f39e Fix treesit-node-field-name and friends (bug#66674) eace9e11226 python-ts-mode: Highlight default parameters 23c06c7c308 Update to Org 9.6.13
Diffstat (limited to 'lisp/progmodes/python.el')
-rw-r--r--lisp/progmodes/python.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el
index ab3bf1b4ec0..211969140ab 100644
--- a/lisp/progmodes/python.el
+++ b/lisp/progmodes/python.el
@@ -1124,7 +1124,8 @@ fontified."
1124 name: (identifier) @font-lock-function-name-face) 1124 name: (identifier) @font-lock-function-name-face)
1125 (class_definition 1125 (class_definition
1126 name: (identifier) @font-lock-type-face) 1126 name: (identifier) @font-lock-type-face)
1127 (parameters (identifier) @font-lock-variable-name-face)) 1127 (parameters (identifier) @font-lock-variable-name-face)
1128 (parameters (default_parameter name: (identifier) @font-lock-variable-name-face)))
1128 1129
1129 :feature 'function 1130 :feature 'function
1130 :language 'python 1131 :language 'python