From 1d696096996928bcc29c0c710797413c58ca5d8e Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Thu, 1 Jan 2015 16:35:55 -0500 Subject: emacs: switch to the new advice system --- .config/emacs/init.el | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to '.config/emacs') diff --git a/.config/emacs/init.el b/.config/emacs/init.el index d879d5d..e25961e 100644 --- a/.config/emacs/init.el +++ b/.config/emacs/init.el @@ -129,8 +129,11 @@ (when (fboundp 'tool-bar-mode) (tool-bar-mode -1)) -(defadvice align-regexp (around lukeshu-align-with-spaces) - (let ((indent-tabs-mode nil)) ad-do-it)) +(defun align-regexp--use-spaces (orig-fun &rest args) + "Use spaces for alignment" + (let ((indent-tabs-mode nil)) + (apply orig-fun args))) +(advice-add 'align-regexp :around #'align-regexp--use-spaces) (require 'go-mode-load nil t) -- cgit v1.2.3