diff options
| author | Chong Yidong | 2009-08-15 13:53:41 +0000 |
|---|---|---|
| committer | Chong Yidong | 2009-08-15 13:53:41 +0000 |
| commit | 8653cf0a6c5e731eda9821beb6862c99a423ecbc (patch) | |
| tree | 87af45863c5d63914ea92c3e5bbdc5641aa9483d | |
| parent | 9ff0b02b3a91a32c76a99a984f5d48cd77efa561 (diff) | |
| download | emacs-8653cf0a6c5e731eda9821beb6862c99a423ecbc.tar.gz emacs-8653cf0a6c5e731eda9821beb6862c99a423ecbc.zip | |
Add comment noting that unbound symbols appear as themselves in local_var_alist.
| -rw-r--r-- | src/buffer.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/buffer.h b/src/buffer.h index 397b97579e6..7e6e8daeafd 100644 --- a/src/buffer.h +++ b/src/buffer.h | |||
| @@ -601,8 +601,9 @@ struct buffer | |||
| 601 | point into this buffer or may point nowhere. */ | 601 | point into this buffer or may point nowhere. */ |
| 602 | Lisp_Object mark; | 602 | Lisp_Object mark; |
| 603 | 603 | ||
| 604 | /* Alist of elements (SYMBOL . VALUE-IN-THIS-BUFFER) | 604 | /* Alist of elements (SYMBOL . VALUE-IN-THIS-BUFFER) for all |
| 605 | for all per-buffer variables of this buffer. */ | 605 | per-buffer variables of this buffer. For locally unbound |
| 606 | symbols, just the symbol appears as the element. */ | ||
| 606 | Lisp_Object local_var_alist; | 607 | Lisp_Object local_var_alist; |
| 607 | 608 | ||
| 608 | /* Symbol naming major mode (eg, lisp-mode). */ | 609 | /* Symbol naming major mode (eg, lisp-mode). */ |