diff options
author | Case Duckworth | 2021-08-30 22:16:21 -0500 |
---|---|---|
committer | Case Duckworth | 2021-08-30 22:16:21 -0500 |
commit | ee9119ab00c9740d12a2d6c4a9d4fb567802272c (patch) | |
tree | 8a579bde63ff0a1b23d2a9a0ac6c1c5e7383e5de /lisp | |
parent | Merge branch 'main' of tildegit.org:acdw/emacs (diff) | |
download | emacs-ee9119ab00c9740d12a2d6c4a9d4fb567802272c.tar.gz emacs-ee9119ab00c9740d12a2d6c4a9d4fb567802272c.zip |
Use global-goto-address-mode instead of individual hooks
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/acdw-compat.el | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lisp/acdw-compat.el b/lisp/acdw-compat.el index 17df856..f9ba9af 100644 --- a/lisp/acdw-compat.el +++ b/lisp/acdw-compat.el | |||
@@ -562,5 +562,11 @@ Used in `repeat-mode'.") | |||
562 | (put command 'repeat-map 'outline-editing-repeat-map)) | 562 | (put command 'repeat-map 'outline-editing-repeat-map)) |
563 | ) | 563 | ) |
564 | 564 | ||
565 | ;;; goto-address-mode | ||
566 | (unless (fboundp 'global-goto-address-mode) | ||
567 | (define-globalized-minor-mode global-goto-address-mode | ||
568 | goto-address-mode goto-addr-mode--turn-on | ||
569 | :version "28.1")) | ||
570 | |||
565 | (provide 'acdw-compat) | 571 | (provide 'acdw-compat) |
566 | ;;; acdw-compat.el ends here | 572 | ;;; acdw-compat.el ends here |