]> code.delx.au - gnu-emacs-elpa/blob - packages/ada-mode/ada-mode-compat-23.4.el
remove bogus execute priv
[gnu-emacs-elpa] / packages / ada-mode / ada-mode-compat-23.4.el
1 ;;; ada-mode-compat-23.4.el --- Implement current Emacs features not present in Emacs 23.4
2
3 ;; Copyright (C) 2013 Free Software Foundation, Inc.
4
5 ;; This file is part of GNU Emacs.
6
7 ;; GNU Emacs is free software: you can redistribute it and/or modify
8 ;; it under the terms of the GNU General Public License as published by
9 ;; the Free Software Foundation, either version 3 of the License, or
10 ;; (at your option) any later version.
11
12 ;; GNU Emacs is distributed in the hope that it will be useful,
13 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
14 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 ;; GNU General Public License for more details.
16
17 ;; You should have received a copy of the GNU General Public License
18 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
19
20 (defvar compilation-filter-start (make-marker)
21 "")
22
23 (defun compilation-filter-start (proc)
24 ""
25 (set-marker compilation-filter-start (point-max)))
26
27 (defun compilation--put-prop (matchnum prop val)
28 (when (and (integerp matchnum) (match-beginning matchnum))
29 (put-text-property
30 (match-beginning matchnum) (match-end matchnum)
31 prop val)))
32
33 ;; FIXME: emacs 24.x manages compilation-filter-start, emacs 23.4 does not
34 ;;
35 ;; gnat-core.el gnat-prj-parse-emacs-final needs:
36 ;; (add-hook 'compilation-start-hook 'ada-gnat-compilation-start))
37 ;;
38 ;; ada-gnat.el ada-gnat-compilation-filter needs:
39 ;; (set-marker compilation-filter-start (point)))
40
41 ;; end of file