diff options
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; |