diff options
| author | Richard M. Stallman | 2007-03-09 22:02:50 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2007-03-09 22:02:50 +0000 |
| commit | c06d4c1f64e770947dcf03b47a46dfcf262b65c0 (patch) | |
| tree | 9dc0f1003e6c08750550963d4aede37b2f8b52be | |
| parent | 029e4603973a95a3e9c82de300598e14ccca6639 (diff) | |
| download | emacs-c06d4c1f64e770947dcf03b47a46dfcf262b65c0.tar.gz emacs-c06d4c1f64e770947dcf03b47a46dfcf262b65c0.zip | |
(abbrev): Add `provide'.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/abbrev.el | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 4bcb94ecd84..e5cfd112741 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2007-03-09 Richard Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * abbrev.el (abbrev): Add `provide'. | ||
| 4 | |||
| 1 | 2007-03-09 Thien-Thi Nguyen <ttn@gnu.org> | 5 | 2007-03-09 Thien-Thi Nguyen <ttn@gnu.org> |
| 2 | 6 | ||
| 3 | * net/ange-ftp.el (ange-ftp-try-passive-mode): Doc fix. | 7 | * net/ange-ftp.el (ange-ftp-try-passive-mode): Doc fix. |
diff --git a/lisp/abbrev.el b/lisp/abbrev.el index 1363ccee561..83a3fbbe49d 100644 --- a/lisp/abbrev.el +++ b/lisp/abbrev.el | |||
| @@ -363,5 +363,7 @@ A prefix argument means don't query; expand all abbrevs." | |||
| 363 | (if (or noquery (y-or-n-p (format "Expand `%s'? " string))) | 363 | (if (or noquery (y-or-n-p (format "Expand `%s'? " string))) |
| 364 | (expand-abbrev))))))) | 364 | (expand-abbrev))))))) |
| 365 | 365 | ||
| 366 | (provide 'abbrev) | ||
| 367 | |||
| 366 | ;; arch-tag: dbd6f3ae-dfe3-40ba-b00f-f9e3ff960df5 | 368 | ;; arch-tag: dbd6f3ae-dfe3-40ba-b00f-f9e3ff960df5 |
| 367 | ;;; abbrev.el ends here | 369 | ;;; abbrev.el ends here |