diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2007-01-08 23:08:10 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2007-01-08 23:08:10 +0000 |
commit | b65d82ca418ef93101b322ed9f731d0173059cd1 (patch) | |
tree | 31a01d65a70d636d97e3fae4733627e1242c24cd /lisp | |
parent | ef9f9fb556c744f6df52bb5c179c5e166907d9ba (diff) | |
download | emacs-b65d82ca418ef93101b322ed9f731d0173059cd1.tar.gz |
(vhdl-save-caches): Fix typo in error message.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 10 | ||||
-rw-r--r-- | lisp/progmodes/vhdl-mode.el | 2 |
2 files changed, 11 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 7ada1dde7c0..eb869e00f6d 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,13 @@ +2007-01-08 Juanma Barranquero <lekktu@gmail.com> + + * battery.el (battery-search-for-one-match-in-files): + * bindings.el (mode-line-minor-mode-help): + * x-dnd.el (x-dnd-types-alist): + * calendar/icalendar.el (icalendar-import-buffer): + * term/mac-win.el (mac-dnd-types-alist): Fix typo in docstring. + + * progmodes/vhdl-mode.el (vhdl-save-caches): Fix typo in error message. + 2007-01-07 Chris Moore <christopher.ian.moore@gmail.com> (tiny change) * replace.el (replace-regexp): Fix typo in docstring. diff --git a/lisp/progmodes/vhdl-mode.el b/lisp/progmodes/vhdl-mode.el index 3bf4227a82f..cc58a09ec59 100644 --- a/lisp/progmodes/vhdl-mode.el +++ b/lisp/progmodes/vhdl-mode.el @@ -13851,7 +13851,7 @@ entity ENT-KEY." (vhdl-save-cache (car project-list)) (setq project-list (cdr project-list))) (message "Saving hierarchy caches...done"))) - (error (progn (vhdl-warning "ERROR: An error occured while saving the hierarchy caches") + (error (progn (vhdl-warning "ERROR: An error occurred while saving the hierarchy caches") (sit-for 2))))) (defun vhdl-save-cache (key) |