diff options
| author | Bastien Guerry | 2008-02-17 23:31:06 +0000 |
|---|---|---|
| committer | Bastien Guerry | 2008-02-17 23:31:06 +0000 |
| commit | a70f5385f7ec2839d876af8e960839307f325d0a (patch) | |
| tree | 7cd0008b4dfa3bf0d7ee05ee542fe50f40835e42 | |
| parent | 1757718397202b1dc77588fdbb7c7121d2615990 (diff) | |
| download | emacs-a70f5385f7ec2839d876af8e960839307f325d0a.tar.gz emacs-a70f5385f7ec2839d876af8e960839307f325d0a.zip | |
Reverted previous erroneous change.
| -rw-r--r-- | lisp/textmodes/org.el | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lisp/textmodes/org.el b/lisp/textmodes/org.el index f70264df796..bc63a962b9c 100644 --- a/lisp/textmodes/org.el +++ b/lisp/textmodes/org.el | |||
| @@ -6564,10 +6564,9 @@ If optional TXT is given, check this string instead of the current kill." | |||
| 6564 | "Narrow buffer to the current subtree." | 6564 | "Narrow buffer to the current subtree." |
| 6565 | (interactive) | 6565 | (interactive) |
| 6566 | (save-excursion | 6566 | (save-excursion |
| 6567 | (save-match-data | 6567 | (narrow-to-region |
| 6568 | (narrow-to-region | 6568 | (progn (org-back-to-heading) (point)) |
| 6569 | (progn (org-back-to-heading) (point)) | 6569 | (progn (org-end-of-subtree t t) (point))))) |
| 6570 | (progn (org-end-of-subtree t t) (point)))))) | ||
| 6571 | 6570 | ||
| 6572 | 6571 | ||
| 6573 | ;;; Outline Sorting | 6572 | ;;; Outline Sorting |