aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/w32fns.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/w32fns.c b/src/w32fns.c
index f2d286d6364..f3391cb98f0 100644
--- a/src/w32fns.c
+++ b/src/w32fns.c
@@ -9111,13 +9111,6 @@ The following parameters are supported:
9111 parameter (see below) is also specified and is a 9111 parameter (see below) is also specified and is a
9112 string. 9112 string.
9113 9113
9114:timeout TIMEOUT -- TIMEOUT is the time in seconds after which the
9115 notification disappears. The value can be integer
9116 or floating-point. This is ignored on Vista and
9117 later systems, where the duration is fixed at 9 sec
9118 and can only be customized via system-wide
9119 Accessibility settings.
9120
9121:title TITLE -- The title of the notification. If TITLE is a string, 9114:title TITLE -- The title of the notification. If TITLE is a string,
9122 it is displayed in a larger font immediately above 9115 it is displayed in a larger font immediately above
9123 the body text. The title text can be up to 63 9116 the body text. The title text can be up to 63
@@ -9179,13 +9172,6 @@ usage: (w32-notification-notify &rest PARAMS) */)
9179 else 9172 else
9180 severity = Ni_Info; 9173 severity = Ni_Info;
9181 9174
9182 /* Timeout. */
9183 lres = Fplist_get (arg_plist, QCtimeout);
9184 if (NUMBERP (lres))
9185 timeout = 1000 * (INTEGERP (lres) ? XINT (lres) : XFLOAT_DATA (lres));
9186 else
9187 timeout = 0;
9188
9189 /* Title. */ 9175 /* Title. */
9190 lres = Fplist_get (arg_plist, QCtitle); 9176 lres = Fplist_get (arg_plist, QCtitle);
9191 if (STRINGP (lres)) 9177 if (STRINGP (lres))
@@ -9300,7 +9286,6 @@ syms_of_w32fns (void)
9300 DEFSYM (QClevel, ":level"); 9286 DEFSYM (QClevel, ":level");
9301 DEFSYM (Qinfo, "info"); 9287 DEFSYM (Qinfo, "info");
9302 DEFSYM (Qwarning, "warning"); 9288 DEFSYM (Qwarning, "warning");
9303 DEFSYM (QCtimeout, ":timeout");
9304 DEFSYM (QCtitle, ":title"); 9289 DEFSYM (QCtitle, ":title");
9305 DEFSYM (QCbody, ":body"); 9290 DEFSYM (QCbody, ":body");
9306#endif 9291#endif