diff options
| author | Dmitry Antipov | 2012-08-07 11:42:34 +0400 |
|---|---|---|
| committer | Dmitry Antipov | 2012-08-07 11:42:34 +0400 |
| commit | 4d2b044cdc0cb1edc8150772fbbb24e2e55c4b77 (patch) | |
| tree | a6de5fdb164bad38a3389f9d7e0703b9ab8a0043 /src/xdisp.c | |
| parent | d3d50620ed3a8066c15ae3d3701b83371ca5382a (diff) | |
| download | emacs-4d2b044cdc0cb1edc8150772fbbb24e2e55c4b77.tar.gz emacs-4d2b044cdc0cb1edc8150772fbbb24e2e55c4b77.zip | |
Drop PGET and revert read access to Lisp_Objects slots of Lisp_Process.
* process.h (PGET): Remove.
(struct Lisp_Process): Do not use INTERNAL_FIELD.
* gnutls.c, print.c, process.c, sysdep.c, w32.c, xdisp.c: Adjust users.
Diffstat (limited to 'src/xdisp.c')
| -rw-r--r-- | src/xdisp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xdisp.c b/src/xdisp.c index abc98224ab6..73dc272e5e2 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -21676,9 +21676,9 @@ decode_mode_spec (struct window *w, register int c, int field_width, | |||
| 21676 | if (PROCESSP (obj)) | 21676 | if (PROCESSP (obj)) |
| 21677 | { | 21677 | { |
| 21678 | p = decode_mode_spec_coding | 21678 | p = decode_mode_spec_coding |
| 21679 | (PGET (XPROCESS (obj), decode_coding_system), p, eol_flag); | 21679 | (XPROCESS (obj)->decode_coding_system, p, eol_flag); |
| 21680 | p = decode_mode_spec_coding | 21680 | p = decode_mode_spec_coding |
| 21681 | (PGET (XPROCESS (obj), encode_coding_system), p, eol_flag); | 21681 | (XPROCESS (obj)->encode_coding_system, p, eol_flag); |
| 21682 | } | 21682 | } |
| 21683 | #endif /* subprocesses */ | 21683 | #endif /* subprocesses */ |
| 21684 | #endif /* 0 */ | 21684 | #endif /* 0 */ |