]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix arglist in python.el (Bug#24762)
authorMark Oteiza <mvoteiza@udel.edu>
Thu, 17 Nov 2016 22:58:20 +0000 (17:58 -0500)
committerMark Oteiza <mvoteiza@udel.edu>
Thu, 17 Nov 2016 22:58:20 +0000 (17:58 -0500)
* lisp/progmodes/python.el: Remove unneeded second args.
(python-define-auxiliary-skeleton): DOC arg should be &optional.

lisp/progmodes/python.el

index f9b28c322c8fbb05d8f61fa11e809768467426a3..9cd9cc8b7c04b2fbd25f8cb3e1bb84257368261c 100644 (file)
@@ -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: "