Hi, when I noticed Emacs complaining about an invalid ^C while loading ada-mode's syntax table, it turned out that this helped:
@@ -188 +188 @@ - (define-key map ["\C-c" tab] 'ada-indent-region) + (define-key map [?\C-c tab] 'ada-indent-region) C-c TAB is now working as expected. (The chord was not defined before the change; the string "^C " would become CAR of a list after (3 keymap ...) of ada-mode-map, before the (return ...) list). G. _______________________________________________ Emacs-ada-mode mailing list [email protected] http://host114.hostmonster.com/mailman/listinfo/emacs-ada-mode_stephe-leake.org
