diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2003-05-04 19:55:38 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2003-05-04 19:55:38 +0000 |
commit | 6f9a2614e7246fa7a1ff8ec7eb40db4d65e160a8 (patch) | |
tree | 1e3e6f89acd2e543b3397048df3d9b9c7caa7bf2 /lisp/progmodes/ada-stmt.el | |
parent | 7abe197c30f1f47116af9c097295d79540f7a445 (diff) | |
download | emacs-6f9a2614e7246fa7a1ff8ec7eb40db4d65e160a8.tar.gz |
(ada-xemacs): Variable removed, since it's better to use (featurep 'xemacs).
Removed warnings generated with Emacs 21.3.x (mostly by adding needed `require'
statements).
Diffstat (limited to 'lisp/progmodes/ada-stmt.el')
-rw-r--r-- | lisp/progmodes/ada-stmt.el | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/lisp/progmodes/ada-stmt.el b/lisp/progmodes/ada-stmt.el index 325602b56c8..bb6d54a49cc 100644 --- a/lisp/progmodes/ada-stmt.el +++ b/lisp/progmodes/ada-stmt.el @@ -3,7 +3,7 @@ ;; Copyright(C) 1987, 93, 94, 96, 97, 98, 99, 2000 ;; Free Software Foundation, Inc. -;; Ada Core Technologies's version: $Revision: 1.22 $ +;; Ada Core Technologies's version: $Revision: 1.23 $ ;; This file is part of GNU Emacs. @@ -61,11 +61,9 @@ ;;; Code: -(eval-when-compile - (condition-case nil (require 'skeleton) - (error nil))) - +(require 'skeleton nil t) (require 'easymenu) +(require 'ada-mode) (defun ada-func-or-proc-name () ;; Get the name of the current function or procedure." |