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))