Skip to content

Commit

Permalink
chore: Fix documentation issues reported by 'eldev lint'.
Browse files Browse the repository at this point in the history
  • Loading branch information
szermatt committed Oct 11, 2024
1 parent d33d86f commit 6d2d779
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion mistty-term.el
Original file line number Diff line number Diff line change
Expand Up @@ -728,7 +728,8 @@ If N is specified, the string is repeated N times."
"TRAMP-aware alternative to `term-command-hook'.
This function is meant to be bound to `term-command-function' to
catch Emacs-specific control sequences \\032...\n.
catch Emacs-specific control sequences \\032...\\n. The STRING
argument includes everything between \\032 and \\n.
When `default-directory' is remote, this function interprets paths
sent by the terminal as being local to the TRAMP connection. The
Expand Down
2 changes: 1 addition & 1 deletion mistty-util.el
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ of failing."
(delete-region pos next-pos)))))

(defun mistty--remove-fake-newlines (start end)
"Remove newlines marked \='term-line-wrap between START and END."
"Remove newlines marked \\='term-line-wrap between START and END."
(save-excursion
(goto-char start)
(while (search-forward "\n" end 'noerror)
Expand Down
2 changes: 1 addition & 1 deletion mistty.el
Original file line number Diff line number Diff line change
Expand Up @@ -1186,7 +1186,7 @@ See the documentation of `mistty-create' for details."
(mistty-create command 'other-window))

(defun mistty--read-default-directory ()
"Get the default directory "
"Get the default directory."
(read-directory-name "Default directory: " default-directory default-directory t nil))

(defun mistty--process-sentinel (proc msg)
Expand Down

0 comments on commit 6d2d779

Please sign in to comment.