| 399 | | (cond ((or (eq this-command 'yank) |
|---|
| 400 | | (eq this-command 'yank-pop)) |
|---|
| 401 | | (longlines-decode-region (point) (mark t)) |
|---|
| 402 | | (if longlines-showing |
|---|
| 403 | | (longlines-show-region (point) (mark t)))) |
|---|
| 404 | | ((and (eq this-command 'newline) longlines-showing) |
|---|
| 405 | | (save-excursion |
|---|
| 406 | | (if (search-backward "\n" nil t) |
|---|
| 407 | | (longlines-show-region |
|---|
| 408 | | (match-beginning 0) (match-end 0)))))) |
|---|
| | 399 | (if (or (eq this-command 'yank) |
|---|
| | 400 | (eq this-command 'yank-pop)) |
|---|
| | 401 | (longlines-decode-region (point) (mark t))) |
|---|
| | 402 | (if longlines-showing |
|---|
| | 403 | (longlines-show-region longlines-wrap-beg longlines-wrap-end)) |
|---|