summaryrefslogtreecommitdiff
path: root/src/process.h
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2011-07-17 22:34:14 -0400
committerStefan Monnier <monnier@iro.umontreal.ca>2011-07-17 22:34:14 -0400
commit925a6be733dc81bd5295680b9c10e3a373d5f9b8 (patch)
treede8e6a325c77b97b8c0b94e8260c15432c3fe5a5 /src/process.h
parent6265325e6bc5ed7da0e049f1b6e148932ea69e34 (diff)
downloademacs-925a6be733dc81bd5295680b9c10e3a373d5f9b8.tar.gz
* src/xdisp.c (next_element_from_string, next_element_from_buffer): Use EQ
to compare Lisp_Objects. * src/gnutls.c (syms_of_gnutls): Rename Vgnutls_log_level to global_gnutls_log_level, don't mistake it for a Lisp_Object. (init_gnutls_functions, emacs_gnutls_handle_error): Fix up uses.
Diffstat (limited to 'src/process.h')
-rw-r--r--src/process.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/process.h b/src/process.h
index 4866a8c1022..aff9e970f63 100644
--- a/src/process.h
+++ b/src/process.h
@@ -141,7 +141,7 @@ struct Lisp_Process
/* Every field in the preceding structure except for the first two
must be a Lisp_Object, for GC's sake. */
-#define ChannelMask(n) (1<<(n))
+#define ChannelMask(n) (1 << (n))
/* True if we are about to fork off a synchronous process or if we
are waiting for it. */