]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/progmodes/cc-awk.el (c-awk-var-num-ket-re): Remove /x80-/xff from it.
authorAlan Mackenzie <acm@muc.de>
Thu, 25 Jul 2019 18:46:17 +0000 (18:46 +0000)
committerAlan Mackenzie <acm@muc.de>
Thu, 25 Jul 2019 18:48:19 +0000 (18:48 +0000)
lisp/progmodes/cc-awk.el

index 1a67a95927b0f1e201d8fb76ec87233591da35eb..0fd850eb64f1a2ddc69bae366fb23f21d959a3c6 100644 (file)
 (defconst c-awk-neutrals*-re
   (concat "\\(" c-awk-neutral-re "\\)*"))
 ;;   A (possibly empty) string of neutral characters (or character pairs).
-(defconst c-awk-var-num-ket-re "[])0-9a-zA-Z_$.\x80-\xff]+")
+(defconst c-awk-var-num-ket-re "[])0-9a-zA-Z_$.]+")
 ;;   Matches a char which is a constituent of a variable or number, or a ket
-;; (i.e. closing bracKET), round or square.  Assume that all characters \x80 to
-;; \xff are "letters".
+;; (i.e. closing bracKET), round or square.  (2019-07): No longer assume that
+;; all characters \x80 to \xff are "letters".
 (defconst c-awk-div-sign-re
   (concat c-awk-var-num-ket-re c-awk-neutrals*-re "/"))
 ;;   Will match a piece of AWK buffer ending in / which is a division sign, in