diff options
| author | Eli Zaretskii | 2013-09-26 10:37:16 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2013-09-26 10:37:16 +0300 |
| commit | b87c4ff2817e71ca71b028792200b1e069a95e04 (patch) | |
| tree | bfe00c0655fa02078a9ab2c633ea06d90c4a2064 /src/process.h | |
| parent | bbc108377873aa6ed7cf21c731770103096eea39 (diff) | |
| parent | ba355de014b75ed104da4777f909db70d62f2357 (diff) | |
| download | emacs-b87c4ff2817e71ca71b028792200b1e069a95e04.tar.gz emacs-b87c4ff2817e71ca71b028792200b1e069a95e04.zip | |
Merge from trunk.
Diffstat (limited to 'src/process.h')
| -rw-r--r-- | src/process.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/process.h b/src/process.h index 6aff95686a2..a9b15f03da4 100644 --- a/src/process.h +++ b/src/process.h | |||
| @@ -27,9 +27,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 27 | #endif | 27 | #endif |
| 28 | 28 | ||
| 29 | INLINE_HEADER_BEGIN | 29 | INLINE_HEADER_BEGIN |
| 30 | #ifndef PROCESS_INLINE | ||
| 31 | # define PROCESS_INLINE INLINE | ||
| 32 | #endif | ||
| 33 | 30 | ||
| 34 | /* Bound on number of file descriptors opened on behalf of a process, | 31 | /* Bound on number of file descriptors opened on behalf of a process, |
| 35 | that need to be closed. */ | 32 | that need to be closed. */ |
| @@ -179,14 +176,14 @@ struct Lisp_Process | |||
| 179 | /* Most code should use these functions to set Lisp fields in struct | 176 | /* Most code should use these functions to set Lisp fields in struct |
| 180 | process. */ | 177 | process. */ |
| 181 | 178 | ||
| 182 | PROCESS_INLINE void | 179 | INLINE void |
| 183 | pset_childp (struct Lisp_Process *p, Lisp_Object val) | 180 | pset_childp (struct Lisp_Process *p, Lisp_Object val) |
| 184 | { | 181 | { |
| 185 | p->childp = val; | 182 | p->childp = val; |
| 186 | } | 183 | } |
| 187 | 184 | ||
| 188 | #ifdef HAVE_GNUTLS | 185 | #ifdef HAVE_GNUTLS |
| 189 | PROCESS_INLINE void | 186 | INLINE void |
| 190 | pset_gnutls_cred_type (struct Lisp_Process *p, Lisp_Object val) | 187 | pset_gnutls_cred_type (struct Lisp_Process *p, Lisp_Object val) |
| 191 | { | 188 | { |
| 192 | p->gnutls_cred_type = val; | 189 | p->gnutls_cred_type = val; |