# HG changeset patch # User Bastien Guerry # Date 1203290325 0 # Node ID 1c7983beb0a79f041ef864afc46c6769aab8f3eb # Parent 445eeb5f6902f7e2e73775fc13ad33f4b5ca4d79 2008-02-17 Ulrich Mueller (tiny change) * msdog-xtra.texi (MS-DOS): Docstring fix. diff -r 445eeb5f6902 -r 1c7983beb0a7 doc/emacs/ChangeLog --- a/doc/emacs/ChangeLog Sun Feb 17 23:13:59 2008 +0000 +++ b/doc/emacs/ChangeLog Sun Feb 17 23:18:45 2008 +0000 @@ -1,3 +1,7 @@ +2008-02-17 Ulrich Mueller (tiny change) + + * msdog-xtra.texi (MS-DOS): Docstring fix. + 2008-02-09 Eli Zaretskii * msdog.texi (Windows Fonts): Use a @table for describing font diff -r 445eeb5f6902 -r 1c7983beb0a7 doc/emacs/msdog-xtra.texi --- a/doc/emacs/msdog-xtra.texi Sun Feb 17 23:13:59 2008 +0000 +++ b/doc/emacs/msdog-xtra.texi Sun Feb 17 23:18:45 2008 +0000 @@ -13,12 +13,12 @@ the MS-DOS ``operating system'' (also known as ``MS-DOG''). @iftex Information about Emacs and Microsoft's current operating system -Windows (also known as ``Losedows) is in the main Emacs manual +Windows (also known as ``Losedows'') is in the main Emacs manual (@pxref{Microsoft Systems,,, emacs, the Emacs Manual}). @end iftex @ifnottex Information about peculiarities common to MS-DOS and Microsoft's -current operating systems Windows (also known as ``Losedows) is in +current operating systems Windows (also known as ``Losedows'') is in @ref{Microsoft Windows}. @end ifnottex diff -r 445eeb5f6902 -r 1c7983beb0a7 lisp/textmodes/org.el --- a/lisp/textmodes/org.el Sun Feb 17 23:13:59 2008 +0000 +++ b/lisp/textmodes/org.el Sun Feb 17 23:18:45 2008 +0000 @@ -6564,9 +6564,10 @@ "Narrow buffer to the current subtree." (interactive) (save-excursion - (narrow-to-region - (progn (org-back-to-heading) (point)) - (progn (org-end-of-subtree t t) (point))))) + (save-match-data + (narrow-to-region + (progn (org-back-to-heading) (point)) + (progn (org-end-of-subtree t t) (point)))))) ;;; Outline Sorting