From: Fabián Ezequiel Gallina Date: Tue, 11 Dec 2012 07:22:55 +0000 (-0300) Subject: * progmodes/python.el (python-skeleton-class) X-Git-Tag: emacs-24.2.91~21 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2c43a9adb2ba4904ac95e0d7be452536d003c37c;p=emacs.git * progmodes/python.el (python-skeleton-class) (python-skeleton-def): Do not add space after defun name. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 37d6e340399..c77cc286c76 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2012-12-11 Fabián Ezequiel Gallina + + * progmodes/python.el (python-skeleton-class) + (python-skeleton-def): Do not add space after defun name. + 2012-12-09 Chong Yidong * simple.el (set-mark-default-inactive): Mark as obsolete, for diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index 7cd59c0c1b4..98ba437d4ef 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el @@ -2681,17 +2681,17 @@ The skeleton will be bound to python-skeleton-NAME." (python-skeleton-define def nil "Function name: " - "def " str " (" ("Parameter, %s: " - (unless (equal ?\( (char-before)) ", ") - str) "):" \n - "\"\"\"" - "\"\"\"" \n - > _ \n) + "def " str "(" ("Parameter, %s: " + (unless (equal ?\( (char-before)) ", ") + str) "):" \n + "\"\"\"" - "\"\"\"" \n + > _ \n) (python-skeleton-define class nil "Class name: " - "class " str " (" ("Inheritance, %s: " - (unless (equal ?\( (char-before)) ", ") - str) + "class " str "(" ("Inheritance, %s: " + (unless (equal ?\( (char-before)) ", ") + str) & ")" | -2 ":" \n "\"\"\"" - "\"\"\"" \n