diff options
| author | Stefan Kangas | 2024-11-01 23:56:12 +0100 |
|---|---|---|
| committer | Stefan Kangas | 2024-11-01 23:56:12 +0100 |
| commit | 4df832750c811abc5ccbe7bfcefe1ad8f144af8e (patch) | |
| tree | 8c69b58b4742d872364a5fb61aaf41510955aede /lisp/eshell | |
| parent | 471716c67d0d00a2e90dd7dfbc2bb88820a248a2 (diff) | |
| download | emacs-4df832750c811abc5ccbe7bfcefe1ad8f144af8e.tar.gz emacs-4df832750c811abc5ccbe7bfcefe1ad8f144af8e.zip | |
Don't start docstrings with "This function"
* lisp/calculator.el (calculator-add-operators):
* lisp/erc/erc-log.el (erc-generate-log-file-name-with-date)
(erc-generate-log-file-name-short):
* lisp/eshell/esh-mode.el (eshell-begin-on-new-line):
* lisp/progmodes/hideif.el (hif-merge-ifdef-region):
* lisp/tab-bar.el (tab-bar--event-to-item):
* lisp/textmodes/artist.el (artist-no-rb-unset-point2)
(artist-no-rb-unset-points):
* lisp/which-key.el (which-key--hide-popup): Don't start function
docstrings with "This function".
Diffstat (limited to 'lisp/eshell')
| -rw-r--r-- | lisp/eshell/esh-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/eshell/esh-mode.el b/lisp/eshell/esh-mode.el index c86e3cc002c..4f94934fccd 100644 --- a/lisp/eshell/esh-mode.el +++ b/lisp/eshell/esh-mode.el | |||
| @@ -537,7 +537,7 @@ Putting this function on `eshell-pre-command-hook' will mimic Plan 9's | |||
| 537 | (eshell-interactive-output-filter nil string))) | 537 | (eshell-interactive-output-filter nil string))) |
| 538 | 538 | ||
| 539 | (defsubst eshell-begin-on-new-line () | 539 | (defsubst eshell-begin-on-new-line () |
| 540 | "This function outputs a newline if not at beginning of line." | 540 | "Print a newline if not at beginning of line." |
| 541 | (save-excursion | 541 | (save-excursion |
| 542 | (goto-char eshell-last-output-end) | 542 | (goto-char eshell-last-output-end) |
| 543 | (or (bolp) | 543 | (or (bolp) |