Remove the delete-current-line function

I don’t use it.
This commit is contained in:
Gergely Polonkai 2023-10-22 05:46:27 +02:00
parent 53876320dc
commit 1849204a57
No known key found for this signature in database
GPG Key ID: 2D2885533B869ED4
1 changed files with 0 additions and 11 deletions

View File

@ -341,17 +341,6 @@ We need to do things differently, if so.
** Misc text manipulation functions
*** Delete the current line
#+BEGIN_SRC emacs-lisp
(defun gpolonkai/delete-current-line ()
"Kill the whole line on which point is."
(interactive)
(beginning-of-line)
(kill-line 1))
#+END_SRC
*** Toggle case of character at point
Based on [[http://ergoemacs.org/emacs/modernization_upcase-word.html][Xahs toggle letter case defun version 2015-12-22]]