From: Barry Warsaw Date: Wed, 18 Oct 1995 14:41:12 +0000 (+0000) Subject: changed underscore to have symbol syntax X-Git-Tag: v1.4b1~521 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2bbe49bf6f4fc818cc6ca83f3705657754b620a8;p=thirdparty%2FPython%2Fcpython.git changed underscore to have symbol syntax --- diff --git a/Misc/python-mode.el b/Misc/python-mode.el index e98f355beb73..60c0aabe1433 100644 --- a/Misc/python-mode.el +++ b/Misc/python-mode.el @@ -339,7 +339,7 @@ Currently-active file is at the head of the list.") ( ?\* . "." ) ( ?\+ . "." ) ( ?\- . "." ) ( ?\/ . "." ) ( ?\< . "." ) ( ?\= . "." ) ( ?\> . "." ) ( ?\| . "." ) - ( ?\_ . "w" ) ; underscore is legit in names + ( ?\_ . "_" ) ; underscore is legit in symbols, but not words ( ?\' . "\"") ; single quote is string quote ( ?\" . "\"" ) ; double quote is string quote too ( ?\` . "$") ; backquote is open and close paren