diff options
| author | Bastien Guerry | 2008-02-17 23:18:45 +0000 |
|---|---|---|
| committer | Bastien Guerry | 2008-02-17 23:18:45 +0000 |
| commit | 1757718397202b1dc77588fdbb7c7121d2615990 (patch) | |
| tree | 261ecdfb713f4aa836a797ba7d28a10f3582af4d | |
| parent | 739b776471d9ee3f193a10c93704c577515ac485 (diff) | |
| download | emacs-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/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/emacs/msdog-xtra.texi | 4 | ||||
| -rw-r--r-- | lisp/textmodes/org.el | 7 |
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 @@ | |||
| 1 | 2008-02-17 Ulrich Mueller <ulm@kph.uni-mainz.de> (tiny change) | ||
| 2 | |||
| 3 | * msdog-xtra.texi (MS-DOS): Docstring fix. | ||
| 4 | |||
| 1 | 2008-02-09 Eli Zaretskii <eliz@gnu.org> | 5 | 2008-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 @@ | |||
| 13 | the MS-DOS ``operating system'' (also known as ``MS-DOG''). | 13 | the MS-DOS ``operating system'' (also known as ``MS-DOG''). |
| 14 | @iftex | 14 | @iftex |
| 15 | Information about Emacs and Microsoft's current operating system | 15 | Information about Emacs and Microsoft's current operating system |
| 16 | Windows (also known as ``Losedows) is in the main Emacs manual | 16 | Windows (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 |
| 20 | Information about peculiarities common to MS-DOS and Microsoft's | 20 | Information about peculiarities common to MS-DOS and Microsoft's |
| 21 | current operating systems Windows (also known as ``Losedows) is in | 21 | current 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 |