diff options
author | Kim F. Storm <storm@cua.dk> | 2004-10-13 12:18:37 +0000 |
---|---|---|
committer | Kim F. Storm <storm@cua.dk> | 2004-10-13 12:18:37 +0000 |
commit | f38e574844abce22100fc41315c70fb7ebb88c60 (patch) | |
tree | c6e8795060205f858391b7171ea6a364a69e40cb | |
parent | 31e931a5d1c8b9ff1a5e8df909e57dec8050516e (diff) | |
download | emacs-f38e574844abce22100fc41315c70fb7ebb88c60.tar.gz |
Fix comment for it->object; it may also be nil.
-rw-r--r-- | src/dispextern.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dispextern.h b/src/dispextern.h index 1e9fa483b27..d6c93cb270e 100644 --- a/src/dispextern.h +++ b/src/dispextern.h @@ -1967,8 +1967,8 @@ struct it /* Object and position where the current display element came from. Object can be a Lisp string in case the current display element - comes from an overlay string, or it is buffer. Position is - a position in object. */ + comes from an overlay string, or it is buffer. It may also be nil + during mode-line update. Position is a position in object. */ Lisp_Object object; struct text_pos position; |