From c747494c43d06823c69f6d2c4fc9aceffb27b30d Mon Sep 17 00:00:00 2001 From: Philippe Dosch <Philippe.Dosch@loria.fr> Date: Thu, 25 Apr 2024 11:39:04 +0200 Subject: [PATCH] Fix functions comments --- .emacs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.emacs b/.emacs index 53391f3..560ddc9 100644 --- a/.emacs +++ b/.emacs @@ -1079,7 +1079,7 @@ (defvar scissors ">8 --------------------------------------------------------------- 8<" "String to insert in \\[scissors].") (defun scissors() - "Insert a line of SCISSORS in the buffer" + "Insert a line of SCISSORS in the buffer." (interactive) (insert scissors) (forward-line 1)) @@ -1087,8 +1087,9 @@ (defun snip-lines-mail () "Delete all lines except the first three in the current buffer selection. -For the first and last remaining lines, remove all characters after the prefix composed of spaces and '>'. -For the middle line, remove all characters after the prefix and insert '[snip]' after the remaining prefix." +For the first and last remaining lines, remove all characters after the prefix +composed of spaces and '>'. For the middle line, remove all characters after +the prefix and insert '[snip]' after the remaining prefix." (interactive) (save-excursion (let ((begin (region-beginning)) -- GitLab