diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2006-11-19 01:35:31 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2006-11-19 01:35:31 +0000 |
commit | f7eb6f23d03369b03f32c308af36c72fc99b8d90 (patch) | |
tree | be4f4b1f48321a8b19952bc86458b7821628937d /lisp/progmodes/ada-mode.el | |
parent | 221439a094d62aa87281b5c5285f9e7372071c97 (diff) | |
download | emacs-f7eb6f23d03369b03f32c308af36c72fc99b8d90.tar.gz |
(ada-make-body): Fix typo.
Diffstat (limited to 'lisp/progmodes/ada-mode.el')
-rw-r--r-- | lisp/progmodes/ada-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/ada-mode.el b/lisp/progmodes/ada-mode.el index 8b9394ab086..ccd91d3b060 100644 --- a/lisp/progmodes/ada-mode.el +++ b/lisp/progmodes/ada-mode.el @@ -5421,7 +5421,7 @@ for `ada-procedure-start-regexp'." (defun ada-make-body () "Create an Ada package body in the current buffer. The spec must be the previously visited buffer. -This function typically is to be hooked into `ff-file-created-hooks'." +This function typically is to be hooked into `ff-file-created-hook'." (delete-region (point-min) (point-max)) (insert-buffer-substring (car (cdr (buffer-list)))) (goto-char (point-min)) |