Fix arglist in python.el (Bug#24762)
* lisp/progmodes/python.el: Remove unneeded second args. (python-define-auxiliary-skeleton): DOC arg should be &optional.
This commit is contained in:
parent
edda93cfb1
commit
5b003caa21
1 changed files with 4 additions and 4 deletions
|
@ -4040,7 +4040,7 @@ be added to `python-mode-skeleton-abbrev-table'."
|
|||
"Abbrev table for Python mode."
|
||||
:parents (list python-mode-skeleton-abbrev-table))
|
||||
|
||||
(defmacro python-define-auxiliary-skeleton (name doc &optional &rest skel)
|
||||
(defmacro python-define-auxiliary-skeleton (name &optional doc &rest skel)
|
||||
"Define a `python-mode' auxiliary skeleton using NAME DOC and SKEL.
|
||||
The skeleton will be bound to python-skeleton-NAME."
|
||||
(declare (indent 2))
|
||||
|
@ -4060,11 +4060,11 @@ The skeleton will be bound to python-skeleton-NAME."
|
|||
(signal 'quit t))
|
||||
,@skel)))
|
||||
|
||||
(python-define-auxiliary-skeleton else nil)
|
||||
(python-define-auxiliary-skeleton else)
|
||||
|
||||
(python-define-auxiliary-skeleton except nil)
|
||||
(python-define-auxiliary-skeleton except)
|
||||
|
||||
(python-define-auxiliary-skeleton finally nil)
|
||||
(python-define-auxiliary-skeleton finally)
|
||||
|
||||
(python-skeleton-define if nil
|
||||
"Condition: "
|
||||
|
|
Loading…
Add table
Reference in a new issue