diff options
| author | Stefan Kangas | 2021-09-29 03:48:35 +0200 |
|---|---|---|
| committer | Stefan Kangas | 2021-09-29 03:53:07 +0200 |
| commit | b9fa57e5b06a826744fee5b4af9cc45d0ee2ff26 (patch) | |
| tree | b87620249723e3acc7a80256083528002f99d9e7 | |
| parent | da89bdde2e3aa941594a112db884ede1beaac658 (diff) | |
| download | emacs-b9fa57e5b06a826744fee5b4af9cc45d0ee2ff26.tar.gz emacs-b9fa57e5b06a826744fee5b4af9cc45d0ee2ff26.zip | |
* etc/NEWS: Announce Eshell bookmarks.
| -rw-r--r-- | etc/NEWS | 4 | ||||
| -rw-r--r-- | lisp/eshell/esh-mode.el | 2 |
2 files changed, 4 insertions, 2 deletions
| @@ -1565,6 +1565,10 @@ This allows users to use (define-key eshell-mode-map ...) as usual. | |||
| 1565 | Some modules have their own minor mode now to account for these | 1565 | Some modules have their own minor mode now to account for these |
| 1566 | changes. | 1566 | changes. |
| 1567 | 1567 | ||
| 1568 | *** Support for bookmark.el. | ||
| 1569 | The command `bookmark-set' (bound to `C-x r m') is now supported, and | ||
| 1570 | will create a bookmark that opens the current directory in Eshell. | ||
| 1571 | |||
| 1568 | ** Archive mode | 1572 | ** Archive mode |
| 1569 | 1573 | ||
| 1570 | --- | 1574 | --- |
diff --git a/lisp/eshell/esh-mode.el b/lisp/eshell/esh-mode.el index a9775b7c568..98e89037f33 100644 --- a/lisp/eshell/esh-mode.el +++ b/lisp/eshell/esh-mode.el | |||
| @@ -993,8 +993,6 @@ This function could be in the list `eshell-output-filter-functions'." | |||
| 993 | 993 | ||
| 994 | ;;; Bookmark support: | 994 | ;;; Bookmark support: |
| 995 | 995 | ||
| 996 | (declare-function bookmark-make-record-default | ||
| 997 | "bookmark" (&optional no-file no-context posn)) | ||
| 998 | (declare-function bookmark-prop-get "bookmark" (bookmark prop)) | 996 | (declare-function bookmark-prop-get "bookmark" (bookmark prop)) |
| 999 | 997 | ||
| 1000 | (defun eshell-bookmark-name () | 998 | (defun eshell-bookmark-name () |