diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2008-06-24 17:55:20 +0000 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2008-06-24 17:55:20 +0000 |
commit | b09987195749473fe0121feac7a72929c76749a4 (patch) | |
tree | b29ff787758b0b3a08d7be5dd8798409fc951869 /src/buffer.h | |
parent | faa6190fe74b4d93f79bf96d29870e2a6894a02c (diff) | |
download | emacs-b09987195749473fe0121feac7a72929c76749a4.tar.gz |
(struct buffer): New member word_wrap.
Diffstat (limited to 'src/buffer.h')
-rw-r--r-- | src/buffer.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/buffer.h b/src/buffer.h index 6926ca1a0cf..992bc8ffca2 100644 --- a/src/buffer.h +++ b/src/buffer.h @@ -650,6 +650,8 @@ struct buffer /* Non-nil means do not display continuation lines. */ Lisp_Object truncate_lines; + /* Non-nil means to use word wrapping when displaying continuation lines. */ + Lisp_Object word_wrap; /* Non-nil means display ctl chars with uparrow. */ Lisp_Object ctl_arrow; /* Non-nil means display text from right to left. */ |