Changeset 4140 for trunk/lisp/longlines.el
- Timestamp:
- 08/10/06 11:19:54 (2 years ago)
- Files:
-
- trunk/lisp/longlines.el (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lisp/longlines.el
r4111 r4140 45 45 46 46 (defcustom longlines-auto-wrap t 47 " *Non-nil means long lines are automatically wrapped after each command.47 "Non-nil means long lines are automatically wrapped after each command. 48 48 Otherwise, you can perform filling using `fill-paragraph' or 49 49 `auto-fill-mode'. In any case, the soft newlines will be removed … … 53 53 54 54 (defcustom longlines-wrap-follows-window-size nil 55 " *Non-nil means wrapping and filling happen at the edge of the window.55 "Non-nil means wrapping and filling happen at the edge of the window. 56 56 Otherwise, `fill-column' is used, regardless of the window size. This 57 57 does not work well when the buffer is displayed in multiple windows … … 61 61 62 62 (defcustom longlines-show-hard-newlines nil 63 " *Non-nil means each hard newline is marked on the screen.63 "Non-nil means each hard newline is marked on the screen. 64 64 \(The variable `longlines-show-effect' controls what they look like.) 65 65 You can also enable the display temporarily, using the command … … 69 69 70 70 (defcustom longlines-show-effect (propertize "|\n" 'face 'escape-glyph) 71 " *A string to display when showing hard newlines.71 "A string to display when showing hard newlines. 72 72 This is used when `longlines-show-hard-newlines' is on." 73 73 :group 'longlines … … 203 203 (let* ((pmin (min beg end)) 204 204 (pmax (max beg end)) 205 (pos (text-property-not-all pmin pmax 'hard nil))) 205 (pos (text-property-not-all pmin pmax 'hard nil)) 206 (inhibit-read-only t)) 206 207 (while pos 207 208 (put-text-property pos (1+ pos) 'display
