diff options
| author | tslil <tslil@posteo.de> | 2026-04-23 20:46:48 +0100 |
|---|---|---|
| committer | tslil <tslil@posteo.de> | 2026-04-23 20:47:01 +0100 |
| commit | df3db5734d449326e72d6599693509446049dfc5 (patch) | |
| tree | da89a1f72355f67d4faf73e86c447ae7a7bd28d7 | |
| parent | 9050450092da0244d20238e065b298d986d24c6d (diff) | |
[emacs] fix some nonsense edit that crept into config
| -rw-r--r-- | emacs/inits/20-programming.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/emacs/inits/20-programming.el b/emacs/inits/20-programming.el index 43954e4..ef5fbd9 100644 --- a/emacs/inits/20-programming.el +++ b/emacs/inits/20-programming.el @@ -1,4 +1,4 @@ -;; Time-stamp: <2026-04-14 10h52 BST (0eb6df5e)> +;; Time-stamp: <2026-04-23 20h46 BST (anker)> ;; ----------------------------------------------------------------------------- ;; General setup @@ -15,10 +15,10 @@ ;; (when (< ww (+ 5 fill-column)) ;; (enlarge-window-horizontally (- (+ 5 fill-column) ww))))) -[(defun align-to-equals (begin end) - "Align region to equal signs" - (interactive "r") - (align-regexp begin end "\\(\\s-*\\)=" 1 1 ))]I +(defun align-to-equals (begin end) + "Align region to equal signs" + (interactive "r") + (align-regexp begin end "\\(\\s-*\\)=" 1 1 )) (use-package eglot :defer |
