]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix ada-mode handling of number literals.
authorChong Yidong <cyd@stupidchicken.com>
Mon, 8 Feb 2010 23:27:29 +0000 (18:27 -0500)
committerChong Yidong <cyd@stupidchicken.com>
Mon, 8 Feb 2010 23:27:29 +0000 (18:27 -0500)
* progmodes/ada-mode.el (ada-in-numeric-literal-p): New function.
(ada-adjust-case): Don't adjust case in hexadecimal number literals.

lisp/ChangeLog
lisp/progmodes/ada-mode.el

index 95bed4244af5f712a7d4a3154e7e59787d68cdbf..6d4c70627452eb5261704355aaa57082ef60422c 100644 (file)
@@ -1,3 +1,9 @@
+2010-02-08  Jose E. Marchesi  <jemarch@gnu.org>
+
+       * progmodes/ada-mode.el (ada-in-numeric-literal-p): New function.
+       (ada-adjust-case): Don't adjust case in hexadecimal number
+       literals.
+
 2010-02-08  Kenichi Handa  <handa@m17n.org>
 
        * international/mule-util.el (with-coding-priority): Add autoload
index a08e31e2016f49e6788c0d87a661796fd17a53cf..95f9f6babf3bc37953347b6a1f17e272b5fa609c 100644 (file)
@@ -1017,6 +1017,9 @@ If PARSE-RESULT is non-nil, use it instead of calling `parse-partial-sexp'."
                          (line-beginning-position) (point))))
   (or (ada-in-string-p parse-result) (ada-in-comment-p parse-result)))
 
+(defsubst ada-in-numeric-literal-p ()
+  "Return t if point is after a prefix of a numeric literal."
+  (looking-back "\\([0-9]+#[0-9a-fA-F_]+\\)"))
 
 ;;------------------------------------------------------------------
 ;; Contextual menus
@@ -1606,6 +1609,8 @@ If FORCE-IDENTIFIER is non-nil then also adjust keyword as identifier."
                 (eq (char-syntax (char-before)) ?w)
                 ;;  if in a string or a comment
                 (not (ada-in-string-or-comment-p))
+                ;;  if in a numeric literal
+                (not (ada-in-numeric-literal-p))
                 )
            (if (save-excursion
                  (forward-word -1)