diff options
author | Richard M. Stallman <rms@gnu.org> | 2005-08-09 02:55:43 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2005-08-09 02:55:43 +0000 |
commit | 300ee850a481a5d80c33bc433f4f0865461f71b6 (patch) | |
tree | 22fdd6ca38a579408eac66838e0b4f6fd564156d /lisp/progmodes/ada-prj.el | |
parent | c8f0dac9e369d3371c2cb82a98f8cc6cc0b6e306 (diff) | |
download | emacs-300ee850a481a5d80c33bc433f4f0865461f71b6.tar.gz |
(ada-prj-display-page): Use with-no-warnings.
Diffstat (limited to 'lisp/progmodes/ada-prj.el')
-rw-r--r-- | lisp/progmodes/ada-prj.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/progmodes/ada-prj.el b/lisp/progmodes/ada-prj.el index d9bfb891ee3..91adf1ed187 100644 --- a/lisp/progmodes/ada-prj.el +++ b/lisp/progmodes/ada-prj.el @@ -477,7 +477,8 @@ connect to the target when working with cross-environments" t) (widget-insert "\n\n") (widget-setup) - (beginning-of-buffer) + (with-no-warnings + (beginning-of-buffer)) ) |