Fix comment block of functions.
This commit is contained in:
parent
69c904cffa
commit
e1775bda51
@ -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))
|
||||
|
Loading…
Reference in New Issue
Block a user