diff options
| author | Daniel Colascione | 2014-04-07 13:54:16 -0700 |
|---|---|---|
| committer | Daniel Colascione | 2014-04-07 13:54:16 -0700 |
| commit | 7e31acf6b81fdce7258077645bc239767c484841 (patch) | |
| tree | 1f0d7b063a19b54982550797df063e0a9f87eaed /src/lisp.h | |
| parent | 608a4502b9fa8f5681368657fba5d5fd0fa46817 (diff) | |
| parent | e3b838807bf9fbbbec9826de6c1e4efdf72acb78 (diff) | |
| download | emacs-7e31acf6b81fdce7258077645bc239767c484841.tar.gz emacs-7e31acf6b81fdce7258077645bc239767c484841.zip | |
Merge from emacs-24; up to 2014-04-01T20:18:12Z!eggert@cs.ucla.edu
Diffstat (limited to 'src/lisp.h')
| -rw-r--r-- | src/lisp.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lisp.h b/src/lisp.h index 03c0d99fb27..264b8832092 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -1572,6 +1572,9 @@ struct Lisp_Symbol | |||
| 1572 | special (with `defvar' etc), and shouldn't be lexically bound. */ | 1572 | special (with `defvar' etc), and shouldn't be lexically bound. */ |
| 1573 | bool_bf declared_special : 1; | 1573 | bool_bf declared_special : 1; |
| 1574 | 1574 | ||
| 1575 | /* True if pointed to from purespace and hence can't be GC'd. */ | ||
| 1576 | bool_bf pinned : 1; | ||
| 1577 | |||
| 1575 | /* The symbol's name, as a Lisp string. */ | 1578 | /* The symbol's name, as a Lisp string. */ |
| 1576 | Lisp_Object name; | 1579 | Lisp_Object name; |
| 1577 | 1580 | ||