diff options
| author | Miles Bader | 2001-10-21 14:18:44 +0000 |
|---|---|---|
| committer | Miles Bader | 2001-10-21 14:18:44 +0000 |
| commit | 4bfbe194acebfb9a595a819bc3a6613e1e5430df (patch) | |
| tree | a5b7df1cbeb6c5907fbaa78dc3f50cda5eb68ee2 | |
| parent | 52d8c529768a1e337a065cd6ea79451b13c41afd (diff) | |
| download | emacs-4bfbe194acebfb9a595a819bc3a6613e1e5430df.tar.gz emacs-4bfbe194acebfb9a595a819bc3a6613e1e5430df.zip | |
(Finsert, Finsert_and_inherit, Finsert_before_markers, Fmessage)
(Fmessage_box, Fmessage_or_box, Fpropertize, Fformat, Fencode_time)
(Finsert_and_inherit_before_markers): Add usage: string to doc string.
| -rw-r--r-- | src/editfns.c | 39 |
1 files changed, 29 insertions, 10 deletions
diff --git a/src/editfns.c b/src/editfns.c index 5161308e6fd..478f69ad7fc 100644 --- a/src/editfns.c +++ b/src/editfns.c | |||
| @@ -1624,7 +1624,9 @@ This feature lets (apply 'encode-time (decode-time ...)) work. | |||
| 1624 | Out-of-range values for SEC, MINUTE, HOUR, DAY, or MONTH are allowed; | 1624 | Out-of-range values for SEC, MINUTE, HOUR, DAY, or MONTH are allowed; |
| 1625 | for example, a DAY of 0 means the day preceding the given month. | 1625 | for example, a DAY of 0 means the day preceding the given month. |
| 1626 | Year numbers less than 100 are treated just like other year numbers. | 1626 | Year numbers less than 100 are treated just like other year numbers. |
| 1627 | If you want them to stand for years in this century, you must do that yourself. */) | 1627 | If you want them to stand for years in this century, you must do that yourself. |
| 1628 | |||
| 1629 | usage: (encode-time SECOND MINUTE HOUR DAY MONTH YEAR &optional ZONE) */) | ||
| 1628 | (nargs, args) | 1630 | (nargs, args) |
| 1629 | int nargs; | 1631 | int nargs; |
| 1630 | register Lisp_Object *args; | 1632 | register Lisp_Object *args; |
| @@ -2019,7 +2021,9 @@ Any other markers at the point of insertion remain before the text. | |||
| 2019 | If the current buffer is multibyte, unibyte strings are converted | 2021 | If the current buffer is multibyte, unibyte strings are converted |
| 2020 | to multibyte for insertion (see `unibyte-char-to-multibyte'). | 2022 | to multibyte for insertion (see `unibyte-char-to-multibyte'). |
| 2021 | If the current buffer is unibyte, multibyte strings are converted | 2023 | If the current buffer is unibyte, multibyte strings are converted |
| 2022 | to unibyte for insertion. */) | 2024 | to unibyte for insertion. |
| 2025 | |||
| 2026 | usage: (insert &rest ARGS) */) | ||
| 2023 | (nargs, args) | 2027 | (nargs, args) |
| 2024 | int nargs; | 2028 | int nargs; |
| 2025 | register Lisp_Object *args; | 2029 | register Lisp_Object *args; |
| @@ -2038,7 +2042,9 @@ Any other markers at the point of insertion remain before the text. | |||
| 2038 | If the current buffer is multibyte, unibyte strings are converted | 2042 | If the current buffer is multibyte, unibyte strings are converted |
| 2039 | to multibyte for insertion (see `unibyte-char-to-multibyte'). | 2043 | to multibyte for insertion (see `unibyte-char-to-multibyte'). |
| 2040 | If the current buffer is unibyte, multibyte strings are converted | 2044 | If the current buffer is unibyte, multibyte strings are converted |
| 2041 | to unibyte for insertion. */) | 2045 | to unibyte for insertion. |
| 2046 | |||
| 2047 | usage: (insert-and-inherit &rest ARGS) */) | ||
| 2042 | (nargs, args) | 2048 | (nargs, args) |
| 2043 | int nargs; | 2049 | int nargs; |
| 2044 | register Lisp_Object *args; | 2050 | register Lisp_Object *args; |
| @@ -2055,7 +2061,9 @@ Point and markers move forward to end up after the inserted text. | |||
| 2055 | If the current buffer is multibyte, unibyte strings are converted | 2061 | If the current buffer is multibyte, unibyte strings are converted |
| 2056 | to multibyte for insertion (see `unibyte-char-to-multibyte'). | 2062 | to multibyte for insertion (see `unibyte-char-to-multibyte'). |
| 2057 | If the current buffer is unibyte, multibyte strings are converted | 2063 | If the current buffer is unibyte, multibyte strings are converted |
| 2058 | to unibyte for insertion. */) | 2064 | to unibyte for insertion. |
| 2065 | |||
| 2066 | usage: (insert-before-markers &rest ARGS) */) | ||
| 2059 | (nargs, args) | 2067 | (nargs, args) |
| 2060 | int nargs; | 2068 | int nargs; |
| 2061 | register Lisp_Object *args; | 2069 | register Lisp_Object *args; |
| @@ -2074,7 +2082,9 @@ Point and markers move forward to end up after the inserted text. | |||
| 2074 | If the current buffer is multibyte, unibyte strings are converted | 2082 | If the current buffer is multibyte, unibyte strings are converted |
| 2075 | to multibyte for insertion (see `unibyte-char-to-multibyte'). | 2083 | to multibyte for insertion (see `unibyte-char-to-multibyte'). |
| 2076 | If the current buffer is unibyte, multibyte strings are converted | 2084 | If the current buffer is unibyte, multibyte strings are converted |
| 2077 | to unibyte for insertion. */) | 2085 | to unibyte for insertion. |
| 2086 | |||
| 2087 | usage: (insert-before-markers-and-inherit &rest ARGS) */) | ||
| 2078 | (nargs, args) | 2088 | (nargs, args) |
| 2079 | int nargs; | 2089 | int nargs; |
| 2080 | register Lisp_Object *args; | 2090 | register Lisp_Object *args; |
| @@ -2952,7 +2962,9 @@ The first argument is a format control string, and the rest are data | |||
| 2952 | to be formatted under control of the string. See `format' for details. | 2962 | to be formatted under control of the string. See `format' for details. |
| 2953 | 2963 | ||
| 2954 | If the first argument is nil, clear any existing message; let the | 2964 | If the first argument is nil, clear any existing message; let the |
| 2955 | minibuffer contents show. */) | 2965 | minibuffer contents show. |
| 2966 | |||
| 2967 | usage: (message STRING &rest ARGS) */) | ||
| 2956 | (nargs, args) | 2968 | (nargs, args) |
| 2957 | int nargs; | 2969 | int nargs; |
| 2958 | Lisp_Object *args; | 2970 | Lisp_Object *args; |
| @@ -2978,7 +2990,9 @@ The first argument is a format control string, and the rest are data | |||
| 2978 | to be formatted under control of the string. See `format' for details. | 2990 | to be formatted under control of the string. See `format' for details. |
| 2979 | 2991 | ||
| 2980 | If the first argument is nil, clear any existing message; let the | 2992 | If the first argument is nil, clear any existing message; let the |
| 2981 | minibuffer contents show. */) | 2993 | minibuffer contents show. |
| 2994 | |||
| 2995 | usage: (message-box STRING &rest ARGS) */) | ||
| 2982 | (nargs, args) | 2996 | (nargs, args) |
| 2983 | int nargs; | 2997 | int nargs; |
| 2984 | Lisp_Object *args; | 2998 | Lisp_Object *args; |
| @@ -3038,7 +3052,9 @@ The first argument is a format control string, and the rest are data | |||
| 3038 | to be formatted under control of the string. See `format' for details. | 3052 | to be formatted under control of the string. See `format' for details. |
| 3039 | 3053 | ||
| 3040 | If the first argument is nil, clear any existing message; let the | 3054 | If the first argument is nil, clear any existing message; let the |
| 3041 | minibuffer contents show. */) | 3055 | minibuffer contents show. |
| 3056 | |||
| 3057 | usage: (message-or-box STRING &rest ARGS) */) | ||
| 3042 | (nargs, args) | 3058 | (nargs, args) |
| 3043 | int nargs; | 3059 | int nargs; |
| 3044 | Lisp_Object *args; | 3060 | Lisp_Object *args; |
| @@ -3063,7 +3079,8 @@ DEFUN ("propertize", Fpropertize, Spropertize, 3, MANY, 0, | |||
| 3063 | doc: /* Return a copy of STRING with text properties added. | 3079 | doc: /* Return a copy of STRING with text properties added. |
| 3064 | First argument is the string to copy. | 3080 | First argument is the string to copy. |
| 3065 | Remaining arguments form a sequence of PROPERTY VALUE pairs for text | 3081 | Remaining arguments form a sequence of PROPERTY VALUE pairs for text |
| 3066 | properties to add to the result. */) | 3082 | properties to add to the result. |
| 3083 | usage: (propertize STRING &rest PROPERTIES) */) | ||
| 3067 | (nargs, args) | 3084 | (nargs, args) |
| 3068 | int nargs; | 3085 | int nargs; |
| 3069 | Lisp_Object *args; | 3086 | Lisp_Object *args; |
| @@ -3120,7 +3137,9 @@ It may contain %-sequences meaning to substitute the next argument. | |||
| 3120 | %c means print a number as a single character. | 3137 | %c means print a number as a single character. |
| 3121 | %S means print any object as an s-expression (using `prin1'). | 3138 | %S means print any object as an s-expression (using `prin1'). |
| 3122 | The argument used for %d, %o, %x, %e, %f, %g or %c must be a number. | 3139 | The argument used for %d, %o, %x, %e, %f, %g or %c must be a number. |
| 3123 | Use %% to put a single % into the output. */) | 3140 | Use %% to put a single % into the output. |
| 3141 | |||
| 3142 | usage: (format STRING &rest OBJECTS) */) | ||
| 3124 | (nargs, args) | 3143 | (nargs, args) |
| 3125 | int nargs; | 3144 | int nargs; |
| 3126 | register Lisp_Object *args; | 3145 | register Lisp_Object *args; |