From fb3494276ebbddcfa7d36b796248e1e66d2c02c7 Mon Sep 17 00:00:00 2001 From: Barry Warsaw Date: Wed, 24 Jul 1996 18:32:08 +0000 Subject: [PATCH] #comment update, re: py-mode-syntax-table --- Misc/python-mode.el | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Misc/python-mode.el b/Misc/python-mode.el index 82670c12e2..a86e4c77a1 100644 --- a/Misc/python-mode.el +++ b/Misc/python-mode.el @@ -323,10 +323,11 @@ Currently-active file is at the head of the list.") ( ?\* . "." ) ( ?\+ . "." ) ( ?\- . "." ) ( ?\/ . "." ) ( ?\< . "." ) ( ?\= . "." ) ( ?\> . "." ) ( ?\| . "." ) - ;; Guido and I disagree about this. Underscore should be - ;; symbol constituent by not word. For historical - ;; reasons, I leave it as is. -baw - ;;( ?\_ . "_" ) ; underscore is legit in symbols, but not words + ;; for historical reasons, underscore is word class + ;; instead of symbol class. it should be symbol class, + ;; but if you're tempted to change it, try binding M-f and + ;; M-b to py-forward-into-nomenclature and + ;; py-backward-into-nomenclature instead. -baw ( ?\_ . "w" ) ; underscore is legit in words ( ?\' . "\"") ; single quote is string quote ( ?\" . "\"" ) ; double quote is string quote too -- 2.50.1