Fix comment block of functions.

This commit is contained in:
kj 2022-11-29 03:45:36 -04:00
parent 69c904cffa
commit e1775bda51
1 changed files with 2 additions and 2 deletions

View File

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