From 2c43a9adb2ba4904ac95e0d7be452536d003c37c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fabi=C3=A1n=20Ezequiel=20Gallina?= Date: Tue, 11 Dec 2012 04:22:55 -0300 Subject: [PATCH] * progmodes/python.el (python-skeleton-class) (python-skeleton-def): Do not add space after defun name. --- lisp/ChangeLog | 5 +++++ lisp/progmodes/python.el | 16 ++++++++-------- 2 files changed, 13 insertions(+), 8 deletions(-) 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 -- 2.39.5