emacs-configuration: Resolve bug - config.el not generating

* user-config/emacs/.emacs.d/config.org: It was discovered that ~/.emacs.d/config.org was no
longer being tangled correctly. It looks like including a elisp block causes this, but its
not clear why (but likely due to changes in the org-mode version being used). It now works as
expected. That is: When new changes are made to ~/.emacs.d/config.org, these make it into
~/.emacs.d/config.el~ during the next run of emacs. This is definitely the case when
~/.emacs.d/config.org is a plain file, but has not yet been explicitly verified for symlinks.
This commit is contained in:
Collin J. Doering 2024-04-18 12:23:02 -04:00
parent 91ad2906ce
commit 73142ca1b3
Signed by: rekahsoft
GPG Key ID: 7B4DEB93212B3022
1 changed files with 1 additions and 1 deletions

View File

@ -1452,7 +1452,7 @@ settings can likely be replaced by the [[https://github.com/hrs/sensible-default
Enable some commands that are by default disabled.
#+begin_src elisp
#+begin_src emacs-lisp
(put 'set-goal-column 'disabled nil)
(put 'upcase-region 'disabled nil)
#+end_src