diff options
author | Case Duckworth | 2021-02-22 09:45:51 -0600 |
---|---|---|
committer | Case Duckworth | 2021-02-22 09:45:51 -0600 |
commit | b1473fe2f345ac5b0c8d9529e8d6c95c86d40c23 (patch) | |
tree | 8151d349d4ab0d8781ba79f3b6e3e84c737448e1 | |
parent | Add Computer.RIP (diff) | |
download | emacs-b1473fe2f345ac5b0c8d9529e8d6c95c86d40c23.tar.gz emacs-b1473fe2f345ac5b0c8d9529e8d6c95c86d40c23.zip |
Add a check for global-goto-address-mode
-rw-r--r-- | config.org | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/config.org b/config.org index b24a840..0aeee16 100644 --- a/config.org +++ b/config.org | |||
@@ -1822,7 +1822,8 @@ already commented. That's it. | |||
1822 | "Buttonize URLs and Email addresses." | 1822 | "Buttonize URLs and Email addresses." |
1823 | 1823 | ||
1824 | #+begin_src emacs-lisp :noweb-ref modes | 1824 | #+begin_src emacs-lisp :noweb-ref modes |
1825 | (global-goto-address-mode +1) | 1825 | (when (fboundp 'global-goto-address-mode) |
1826 | (global-goto-address-mode +1)) | ||
1826 | #+end_src | 1827 | #+end_src |
1827 | 1828 | ||
1828 | * Writing | 1829 | * Writing |