log: allow to resore default log function
authorRan Benita <ran234@gmail.com>
Mon, 6 Aug 2012 17:04:22 +0000 (20:04 +0300)
committerRan Benita <ran234@gmail.com>
Tue, 7 Aug 2012 08:09:42 +0000 (11:09 +0300)
Signed-off-by: Ran Benita <ran234@gmail.com>
src/context.c
xkbcommon/xkbcommon.h

index e373d1a..81c008b 100644 (file)
@@ -334,7 +334,7 @@ xkb_set_log_fn(struct xkb_context *ctx,
                void (*log_fn)(struct xkb_context *ctx, int priority,
                               const char *fmt, va_list args))
 {
-    ctx->log_fn = log_fn;
+    ctx->log_fn = (log_fn ? log_fn : default_log_fn);
 }
 
 XKB_EXPORT int
index 8c772ae..2b3f8e3 100644 (file)
@@ -257,8 +257,8 @@ xkb_context_unref(struct xkb_context *context);
  */
 
 /**
- * Sets the function to be called for logging messages, instead of the
- * default logger which writes to stderr.
+ * Sets the function to be called for logging messages.
+ * Passing NULL restores the default function, which logs to stderr.
  **/
 void
 xkb_set_log_fn(struct xkb_context *context,