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/print.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/print.c')
| -rw-r--r-- | src/print.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/print.c b/src/print.c index ffa8a9b1b48..4a8c3fda319 100644 --- a/src/print.c +++ b/src/print.c | |||
| @@ -1697,11 +1697,11 @@ print_object (Lisp_Object obj, register Lisp_Object printcharfun, int escapeflag | |||
| 1697 | if (escapeflag) | 1697 | if (escapeflag) |
| 1698 | { | 1698 | { |
| 1699 | strout ("#<process ", -1, -1, printcharfun); | 1699 | strout ("#<process ", -1, -1, printcharfun); |
| 1700 | print_string (PGET (XPROCESS (obj), name), printcharfun); | 1700 | print_string (XPROCESS (obj)->name, printcharfun); |
| 1701 | PRINTCHAR ('>'); | 1701 | PRINTCHAR ('>'); |
| 1702 | } | 1702 | } |
| 1703 | else | 1703 | else |
| 1704 | print_string (PGET (XPROCESS (obj), name), printcharfun); | 1704 | print_string (XPROCESS (obj)->name, printcharfun); |
| 1705 | } | 1705 | } |
| 1706 | else if (BOOL_VECTOR_P (obj)) | 1706 | else if (BOOL_VECTOR_P (obj)) |
| 1707 | { | 1707 | { |