]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove out-of-date documentation from python.el
authorStefan Kangas <stefankangas@gmail.com>
Mon, 30 Sep 2024 18:37:27 +0000 (20:37 +0200)
committerEshel Yaron <me@eshelyaron.com>
Sun, 6 Oct 2024 06:44:32 +0000 (08:44 +0200)
* lisp/progmodes/python.el: Remove out-of-date documentation about
automatic indentation; 'electric-indent-mode' is enabled by default in
Emacs 24.4 or later, so this is no longer an issue.

(cherry picked from commit fd1a1b07805a0d84ca3a7fe83a5f90a8fa0fd00b)

lisp/progmodes/python.el

index 4e80b8ab5fe31904ef0ce88e536e936f9f242ce6..566f7716a69e1ac9aeb2613d3a63be64cee5ba69 100644 (file)
 ;; `python-imenu-format-parent-item-jump-label-function' variables for
 ;; changing the way labels are formatted in the tree version.
 
-;; If you used python-mode.el you may miss auto-indentation when
-;; inserting newlines.  To achieve the same behavior you have two
-;; options:
-
-;; 1) Enable the minor-mode `electric-indent-mode' (enabled by
-;;    default) and use RET.  If this mode is disabled use
-;;    `newline-and-indent', bound to C-j.
-
-;; 2) Add the following hook in your .emacs:
-
-;; (add-hook 'python-mode-hook
-;;   (lambda ()
-;;     (define-key python-mode-map "\C-m" 'newline-and-indent)))
-
-;; I'd recommend the first one since you'll get the same behavior for
-;; all modes out-of-the-box.
-
 ;; Flymake: A Flymake backend, using the pyflakes program by default,
 ;; is provided.  You can also use flake8 or pylint by customizing
 ;; `python-flymake-command'.