aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMiles Bader2001-10-21 14:18:44 +0000
committerMiles Bader2001-10-21 14:18:44 +0000
commit4bfbe194acebfb9a595a819bc3a6613e1e5430df (patch)
treea5b7df1cbeb6c5907fbaa78dc3f50cda5eb68ee2 /src
parent52d8c529768a1e337a065cd6ea79451b13c41afd (diff)
downloademacs-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.
Diffstat (limited to 'src')
-rw-r--r--src/editfns.c39
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.
1624Out-of-range values for SEC, MINUTE, HOUR, DAY, or MONTH are allowed; 1624Out-of-range values for SEC, MINUTE, HOUR, DAY, or MONTH are allowed;
1625for example, a DAY of 0 means the day preceding the given month. 1625for example, a DAY of 0 means the day preceding the given month.
1626Year numbers less than 100 are treated just like other year numbers. 1626Year numbers less than 100 are treated just like other year numbers.
1627If you want them to stand for years in this century, you must do that yourself. */) 1627If you want them to stand for years in this century, you must do that yourself.
1628
1629usage: (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.
2019If the current buffer is multibyte, unibyte strings are converted 2021If the current buffer is multibyte, unibyte strings are converted
2020to multibyte for insertion (see `unibyte-char-to-multibyte'). 2022to multibyte for insertion (see `unibyte-char-to-multibyte').
2021If the current buffer is unibyte, multibyte strings are converted 2023If the current buffer is unibyte, multibyte strings are converted
2022to unibyte for insertion. */) 2024to unibyte for insertion.
2025
2026usage: (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.
2038If the current buffer is multibyte, unibyte strings are converted 2042If the current buffer is multibyte, unibyte strings are converted
2039to multibyte for insertion (see `unibyte-char-to-multibyte'). 2043to multibyte for insertion (see `unibyte-char-to-multibyte').
2040If the current buffer is unibyte, multibyte strings are converted 2044If the current buffer is unibyte, multibyte strings are converted
2041to unibyte for insertion. */) 2045to unibyte for insertion.
2046
2047usage: (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.
2055If the current buffer is multibyte, unibyte strings are converted 2061If the current buffer is multibyte, unibyte strings are converted
2056to multibyte for insertion (see `unibyte-char-to-multibyte'). 2062to multibyte for insertion (see `unibyte-char-to-multibyte').
2057If the current buffer is unibyte, multibyte strings are converted 2063If the current buffer is unibyte, multibyte strings are converted
2058to unibyte for insertion. */) 2064to unibyte for insertion.
2065
2066usage: (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.
2074If the current buffer is multibyte, unibyte strings are converted 2082If the current buffer is multibyte, unibyte strings are converted
2075to multibyte for insertion (see `unibyte-char-to-multibyte'). 2083to multibyte for insertion (see `unibyte-char-to-multibyte').
2076If the current buffer is unibyte, multibyte strings are converted 2084If the current buffer is unibyte, multibyte strings are converted
2077to unibyte for insertion. */) 2085to unibyte for insertion.
2086
2087usage: (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
2952to be formatted under control of the string. See `format' for details. 2962to be formatted under control of the string. See `format' for details.
2953 2963
2954If the first argument is nil, clear any existing message; let the 2964If the first argument is nil, clear any existing message; let the
2955minibuffer contents show. */) 2965minibuffer contents show.
2966
2967usage: (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
2978to be formatted under control of the string. See `format' for details. 2990to be formatted under control of the string. See `format' for details.
2979 2991
2980If the first argument is nil, clear any existing message; let the 2992If the first argument is nil, clear any existing message; let the
2981minibuffer contents show. */) 2993minibuffer contents show.
2994
2995usage: (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
3038to be formatted under control of the string. See `format' for details. 3052to be formatted under control of the string. See `format' for details.
3039 3053
3040If the first argument is nil, clear any existing message; let the 3054If the first argument is nil, clear any existing message; let the
3041minibuffer contents show. */) 3055minibuffer contents show.
3056
3057usage: (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.
3064First argument is the string to copy. 3080First argument is the string to copy.
3065Remaining arguments form a sequence of PROPERTY VALUE pairs for text 3081Remaining arguments form a sequence of PROPERTY VALUE pairs for text
3066properties to add to the result. */) 3082properties to add to the result.
3083usage: (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.
3123Use %% to put a single % into the output. */) 3140Use %% to put a single % into the output.
3141
3142usage: (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;