* progmodes/python.el (python-skeleton-class)
(python-skeleton-def): Do not add space after defun name.
This commit is contained in:
parent
645c6a30a7
commit
2c43a9adb2
2 changed files with 13 additions and 8 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2012-12-11 Fabián Ezequiel Gallina <fgallina@cuca>
|
||||||
|
|
||||||
|
* progmodes/python.el (python-skeleton-class)
|
||||||
|
(python-skeleton-def): Do not add space after defun name.
|
||||||
|
|
||||||
2012-12-09 Chong Yidong <cyd@gnu.org>
|
2012-12-09 Chong Yidong <cyd@gnu.org>
|
||||||
|
|
||||||
* simple.el (set-mark-default-inactive): Mark as obsolete, for
|
* simple.el (set-mark-default-inactive): Mark as obsolete, for
|
||||||
|
|
|
@ -2681,7 +2681,7 @@ The skeleton will be bound to python-skeleton-NAME."
|
||||||
|
|
||||||
(python-skeleton-define def nil
|
(python-skeleton-define def nil
|
||||||
"Function name: "
|
"Function name: "
|
||||||
"def " str " (" ("Parameter, %s: "
|
"def " str "(" ("Parameter, %s: "
|
||||||
(unless (equal ?\( (char-before)) ", ")
|
(unless (equal ?\( (char-before)) ", ")
|
||||||
str) "):" \n
|
str) "):" \n
|
||||||
"\"\"\"" - "\"\"\"" \n
|
"\"\"\"" - "\"\"\"" \n
|
||||||
|
@ -2689,7 +2689,7 @@ The skeleton will be bound to python-skeleton-NAME."
|
||||||
|
|
||||||
(python-skeleton-define class nil
|
(python-skeleton-define class nil
|
||||||
"Class name: "
|
"Class name: "
|
||||||
"class " str " (" ("Inheritance, %s: "
|
"class " str "(" ("Inheritance, %s: "
|
||||||
(unless (equal ?\( (char-before)) ", ")
|
(unless (equal ?\( (char-before)) ", ")
|
||||||
str)
|
str)
|
||||||
& ")" | -2
|
& ")" | -2
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue