aboutsummaryrefslogtreecommitdiffstats
path: root/src/lisp.h
diff options
context:
space:
mode:
authorDaniel Colascione2014-04-07 13:54:16 -0700
committerDaniel Colascione2014-04-07 13:54:16 -0700
commit7e31acf6b81fdce7258077645bc239767c484841 (patch)
tree1f0d7b063a19b54982550797df063e0a9f87eaed /src/lisp.h
parent608a4502b9fa8f5681368657fba5d5fd0fa46817 (diff)
parente3b838807bf9fbbbec9826de6c1e4efdf72acb78 (diff)
downloademacs-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.h3
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