emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r117317: * lisp/progmodes/python.el (class skeleton)


From: Stefan Monnier
Subject: [Emacs-diffs] trunk r117317: * lisp/progmodes/python.el (class skeleton): Don't erase last char of class
Date: Thu, 12 Jun 2014 02:24:30 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 117317
revision-id: address@hidden
parent: address@hidden
fixes bug: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=17683
author: Matthias Meulien <address@hidden>
committer: Stefan Monnier <address@hidden>
branch nick: trunk
timestamp: Wed 2014-06-11 22:24:24 -0400
message:
  * lisp/progmodes/python.el (class skeleton): Don't erase last char of class
  name.
modified:
  lisp/ChangeLog                 changelog-20091113204419-o5vbwnq5f7feedwu-1432
  lisp/progmodes/python.el       python.el-20091113204419-o5vbwnq5f7feedwu-3008
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2014-06-12 02:18:54 +0000
+++ b/lisp/ChangeLog    2014-06-12 02:24:24 +0000
@@ -1,3 +1,8 @@
+2014-06-12  Matthias Meulien  <address@hidden>
+
+       * progmodes/python.el (class skeleton): Don't erase last char of class
+       name (bug#17683).
+
 2014-06-12  Cameron Desautels  <address@hidden>  (tiny change)
 
        * help.el (where-is): Use `default' arg of completing-read (bug#17705).

=== modified file 'lisp/progmodes/python.el'
--- a/lisp/progmodes/python.el  2014-06-12 01:45:33 +0000
+++ b/lisp/progmodes/python.el  2014-06-12 02:24:24 +0000
@@ -2983,7 +2983,7 @@
   "class " str "(" ("Inheritance, %s: "
                     (unless (equal ?\( (char-before)) ", ")
                     str)
-  & ")" | -2
+  & ")" | -1
   ":" \n
   "\"\"\"" - "\"\"\"" \n
   > _ \n)


reply via email to

[Prev in Thread] Current Thread [Next in Thread]