aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBastien Guerry2008-02-17 23:18:45 +0000
committerBastien Guerry2008-02-17 23:18:45 +0000
commit1757718397202b1dc77588fdbb7c7121d2615990 (patch)
tree261ecdfb713f4aa836a797ba7d28a10f3582af4d
parent739b776471d9ee3f193a10c93704c577515ac485 (diff)
downloademacs-1757718397202b1dc77588fdbb7c7121d2615990.tar.gz
emacs-1757718397202b1dc77588fdbb7c7121d2615990.zip
2008-02-17 Ulrich Mueller <ulm@kph.uni-mainz.de> (tiny change)
* msdog-xtra.texi (MS-DOS): Docstring fix.
-rw-r--r--doc/emacs/ChangeLog4
-rw-r--r--doc/emacs/msdog-xtra.texi4
-rw-r--r--lisp/textmodes/org.el7
3 files changed, 10 insertions, 5 deletions
diff --git a/doc/emacs/ChangeLog b/doc/emacs/ChangeLog
index a132359f61b..1e94afbbbc8 100644
--- a/doc/emacs/ChangeLog
+++ b/doc/emacs/ChangeLog
@@ -1,3 +1,7 @@
12008-02-17 Ulrich Mueller <ulm@kph.uni-mainz.de> (tiny change)
2
3 * msdog-xtra.texi (MS-DOS): Docstring fix.
4
12008-02-09 Eli Zaretskii <eliz@gnu.org> 52008-02-09 Eli Zaretskii <eliz@gnu.org>
2 6
3 * msdog.texi (Windows Fonts): Use a @table for describing font 7 * msdog.texi (Windows Fonts): Use a @table for describing font
diff --git a/doc/emacs/msdog-xtra.texi b/doc/emacs/msdog-xtra.texi
index 3dc8e667415..e9f62b64847 100644
--- a/doc/emacs/msdog-xtra.texi
+++ b/doc/emacs/msdog-xtra.texi
@@ -13,12 +13,12 @@
13the MS-DOS ``operating system'' (also known as ``MS-DOG''). 13the MS-DOS ``operating system'' (also known as ``MS-DOG'').
14@iftex 14@iftex
15Information about Emacs and Microsoft's current operating system 15Information about Emacs and Microsoft's current operating system
16Windows (also known as ``Losedows) is in the main Emacs manual 16Windows (also known as ``Losedows'') is in the main Emacs manual
17(@pxref{Microsoft Systems,,, emacs, the Emacs Manual}). 17(@pxref{Microsoft Systems,,, emacs, the Emacs Manual}).
18@end iftex 18@end iftex
19@ifnottex 19@ifnottex
20Information about peculiarities common to MS-DOS and Microsoft's 20Information about peculiarities common to MS-DOS and Microsoft's
21current operating systems Windows (also known as ``Losedows) is in 21current operating systems Windows (also known as ``Losedows'') is in
22@ref{Microsoft Windows}. 22@ref{Microsoft Windows}.
23@end ifnottex 23@end ifnottex
24 24
diff --git a/lisp/textmodes/org.el b/lisp/textmodes/org.el
index bc63a962b9c..f70264df796 100644
--- a/lisp/textmodes/org.el
+++ b/lisp/textmodes/org.el
@@ -6564,9 +6564,10 @@ 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 (narrow-to-region 6567 (save-match-data
6568 (progn (org-back-to-heading) (point)) 6568 (narrow-to-region
6569 (progn (org-end-of-subtree t t) (point))))) 6569 (progn (org-back-to-heading) (point))
6570 (progn (org-end-of-subtree t t) (point))))))
6570 6571
6571 6572
6572;;; Outline Sorting 6573;;; Outline Sorting