From e1775bda51d23bebc06c33620997386fbc544cf4 Mon Sep 17 00:00:00 2001 From: kj Date: Tue, 29 Nov 2022 03:45:36 -0400 Subject: [PATCH] Fix comment block of functions. --- configs/init-functions.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configs/init-functions.el b/configs/init-functions.el index 0d05880..8ef1d9e 100644 --- a/configs/init-functions.el +++ b/configs/init-functions.el @@ -27,7 +27,7 @@ Saves to a temp file and puts the filename in the kill ring." ;; Comentar línea o región (defun comment-or-uncomment-region-or-line () - "Comments or uncomments the region or the current line if there's no active region." + "Comments or uncomments the region or the current line." (interactive) (let (beg end) (if (region-active-p) @@ -39,7 +39,7 @@ Saves to a temp file and puts the filename in the kill ring." ;; Duplicar la línea actual (defun duplicate-current-line (&optional n) - "duplicate current line, make more than 1 copy given a numeric argument" + "Duplicate current line, make more than 1 copy given a numeric (N) argument." (interactive "p") (save-excursion (let ((nb (or n 1))