;; Markus Heritsch <Markus.Heritsch@studbox.uni-stuttgart.de>
;; Emmanuel Briot <briot@gnat.com>
;; Maintainer: Emmanuel Briot <briot@gnat.com>
-;; Ada Core Technologies's version: $Revision: 1.70 $
+;; Ada Core Technologies's version: $Revision: 1.31 $
;; Keywords: languages ada
;; This file is not part of GNU Emacs
;; Support for compile.el
;; We just substitute our own functions to go to the error.
(add-hook 'compilation-mode-hook
- '(lambda()
+ (lambda()
(set 'compile-auto-highlight 40)
(define-key compilation-minor-mode-map [mouse-2]
'ada-compile-mouse-goto-error)
(concat "^\\(private[ \t]\\)?[ \t]*package[ \t]+"
"\\(body[ \t]+\\)?"
"\\(\\(\\sw\\|[_.]\\)+\\)\\.\\(\\sw\\|_\\)+[ \t\n]+is"))
- '(lambda ()
+ (lambda ()
(set 'fname (ff-get-file
ff-search-directories
(ada-make-filename-from-adaname
;; go to the correct package.
(add-to-list 'ff-special-constructs
(cons "^separate[ \t\n]*(\\(\\(\\sw\\|[_.]\\)+\\))"
- '(lambda ()
+ (lambda ()
(set 'fname (ff-get-file
ff-search-directories
(ada-make-filename-from-adaname
;; old one can handle only one possible type of extension for Ada files
(add-to-list 'ff-special-constructs
(cons "^with[ \t]+\\([a-zA-Z0-9_\\.]+\\)"
- '(lambda ()
+ (lambda ()
(set 'fname (ff-get-file
ff-search-directories
(ada-make-filename-from-adaname
(add-hook 'local-write-file-hooks 'ada-remove-trailing-spaces)
;; convert all tabs to the correct number of spaces.
(add-hook 'local-write-file-hooks
- '(lambda () (untabify (point-min) (point-max))))))
+ (lambda () (untabify (point-min) (point-max))))))
(run-hooks 'ada-mode-hook)
;; Save the list in the file
(find-file (expand-file-name ada-case-exception-file))
(erase-buffer)
- (mapcar '(lambda (x) (insert (car x) (nth 1 x) "\n"))
+ (mapcar (lambda (x) (insert (car x) (nth 1 x) "\n"))
(sort exception-list
(lambda(a b) (string< (car a) (car b)))))
(save-buffer)