diff options
| author | Eli Zaretskii | 2025-03-09 15:02:39 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2025-03-09 15:02:39 +0200 |
| commit | 59d1aac49dfdc49e34be5964f547db0cfa7e127b (patch) | |
| tree | d77d8fa81094e38c5117bbe339ee6f13affae12a /lisp/language | |
| parent | 35c7837c6616b3a2b845ba06d3ed797bb12fb749 (diff) | |
| download | emacs-59d1aac49dfdc49e34be5964f547db0cfa7e127b.tar.gz emacs-59d1aac49dfdc49e34be5964f547db0cfa7e127b.zip | |
Document return values of the various read-* functions
* lisp/textmodes/string-edit.el (read-string-from-buffer):
* lisp/simple.el (read-from-kill-ring, read-shell-command)
(read-signal-name):
* lisp/replace.el (read-regexp-case-fold-search):
* lisp/auth-source.el (read-passwd):
* lisp/subr.el (read-key, read-number):
* lisp/minibuffer.el (read-file-name, read-no-blanks-input):
* lisp/international/mule-cmds.el (read-multilingual-string):
* lisp/language/japan-util.el (read-hiragana-string):
* lisp/files-x.el (read-file-local-variable)
(read-file-local-variable-mode, read-file-local-variable-value):
* lisp/faces.el (read-face-font, read-face-name):
* lisp/simple.el (read-extended-command):
* lisp/env.el (read-envvar-name):
* lisp/files.el (read-directory-name):
* lisp/faces.el (read-color):
* lisp/international/mule-diag.el (read-charset):
* lisp/emacs-lisp/map-ynp.el (read-answer):
* src/coding.c (Fread_coding_system)
(Fread_non_nil_coding_system):
* src/minibuf.c (Fread_command, Fread_from_minibuffer):
* src/lread.c (Fread_char, Fread_char_exclusive, Fread_event): Doc
fixes.
Diffstat (limited to 'lisp/language')
| -rw-r--r-- | lisp/language/japan-util.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/language/japan-util.el b/lisp/language/japan-util.el index c61e98c8fca..718c469d562 100644 --- a/lisp/language/japan-util.el +++ b/lisp/language/japan-util.el | |||
| @@ -317,7 +317,8 @@ Optional argument KATAKANA-ONLY non-nil means to convert only KATAKANA char." | |||
| 317 | ;;;###autoload | 317 | ;;;###autoload |
| 318 | (defun read-hiragana-string (prompt &optional initial-input) | 318 | (defun read-hiragana-string (prompt &optional initial-input) |
| 319 | "Read a Hiragana string from the minibuffer, prompting with string PROMPT. | 319 | "Read a Hiragana string from the minibuffer, prompting with string PROMPT. |
| 320 | If non-nil, second arg INITIAL-INPUT is a string to insert before reading." | 320 | If non-nil, second arg INITIAL-INPUT is a string to insert before reading. |
| 321 | Return the string read from the minibuffer." | ||
| 321 | (read-multilingual-string prompt initial-input "japanese-hiragana")) | 322 | (read-multilingual-string prompt initial-input "japanese-hiragana")) |
| 322 | 323 | ||
| 323 | ;; | 324 | ;; |