summary refs log tree commit diff stats
path: root/tag-emacs/emacs.d/elisp
diff options
context:
space:
mode:
authorAlan Pearce2014-05-15 18:57:07 +0100
committerAlan Pearce2014-05-15 18:57:07 +0100
commitfa2854f23faba51da732d07977362b7034e5d034 (patch)
treea410c0724cb3c3cd708a758739c744126dc573c7 /tag-emacs/emacs.d/elisp
parent26c5a8a3fb827310d09019a0002fe87cd821ec88 (diff)
downloaddotfiles-fa2854f23faba51da732d07977362b7034e5d034.tar.lz
dotfiles-fa2854f23faba51da732d07977362b7034e5d034.tar.zst
dotfiles-fa2854f23faba51da732d07977362b7034e5d034.zip
Emacs: remove old shuffle-lines library
Diffstat (limited to 'tag-emacs/emacs.d/elisp')
-rw-r--r--tag-emacs/emacs.d/elisp/shuffle-lines.el20
1 files changed, 0 insertions, 20 deletions
diff --git a/tag-emacs/emacs.d/elisp/shuffle-lines.el b/tag-emacs/emacs.d/elisp/shuffle-lines.el
deleted file mode 100644
index be0a98f..0000000
--- a/tag-emacs/emacs.d/elisp/shuffle-lines.el
+++ /dev/null
@@ -1,20 +0,0 @@
-;;;###autoload
-(defun move-line-down ()
-    (interactive)
-    (let ((col (current-column)))
-        (save-excursion
-            (forward-line)
-            (transpose-lines 1))
-        (forward-line)
-        (move-to-column col)))
-
-;;;###autoload
-(defun move-line-up ()
-    (interactive)
-    (let ((col (current-column)))
-        (save-excursion
-            (forward-line)
-            (transpose-lines -1))
-        (move-to-column col)))
-
-(provide 'shuffle-lines)