diff options
| author | Eli Zaretskii | 2008-10-20 09:51:40 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2008-10-20 09:51:40 +0000 |
| commit | 61331bf33b28709201836b1950815673e554efa7 (patch) | |
| tree | 432b07bb1b7a5971af51b705d2bf3c127bc77a88 | |
| parent | d0fc47eda0459c486dd114eee8674df1a6e4bc6a (diff) | |
| download | emacs-61331bf33b28709201836b1950815673e554efa7.tar.gz emacs-61331bf33b28709201836b1950815673e554efa7.zip | |
Don't use @deffn Subroutine.
| -rw-r--r-- | doc/lispref/files.texi | 4 | ||||
| -rw-r--r-- | doc/lispref/markers.texi | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/doc/lispref/files.texi b/doc/lispref/files.texi index 95834158d05..c7567e039e3 100644 --- a/doc/lispref/files.texi +++ b/doc/lispref/files.texi | |||
| @@ -1550,13 +1550,13 @@ complete and relative specifications can be combined, as in | |||
| 1550 | symbolic mode bits specifications. | 1550 | symbolic mode bits specifications. |
| 1551 | @end defun | 1551 | @end defun |
| 1552 | 1552 | ||
| 1553 | @deffn Subroutine file-modes-symbolic-to-number modes &optional base-modes | 1553 | @defun file-modes-symbolic-to-number modes &optional base-modes |
| 1554 | This subroutine converts a symbolic specification of file mode bits in | 1554 | This subroutine converts a symbolic specification of file mode bits in |
| 1555 | @var{modes} into the equivalent numeric value. If the symbolic | 1555 | @var{modes} into the equivalent numeric value. If the symbolic |
| 1556 | specification is based on an existing file, that file's mode bits are | 1556 | specification is based on an existing file, that file's mode bits are |
| 1557 | taken from the optional argument @var{base-modes}; if that argument is | 1557 | taken from the optional argument @var{base-modes}; if that argument is |
| 1558 | omitted or nil, it defaults to zero, i.e.@: no access rights at all. | 1558 | omitted or nil, it defaults to zero, i.e.@: no access rights at all. |
| 1559 | @end deffn | 1559 | @end defun |
| 1560 | 1560 | ||
| 1561 | @defun set-file-times filename &optional time | 1561 | @defun set-file-times filename &optional time |
| 1562 | This function sets the access and modification times of @var{filename} | 1562 | This function sets the access and modification times of @var{filename} |
diff --git a/doc/lispref/markers.texi b/doc/lispref/markers.texi index 2793346c521..38cea0629b4 100644 --- a/doc/lispref/markers.texi +++ b/doc/lispref/markers.texi | |||
| @@ -575,13 +575,13 @@ any subsequent command that moves point and is not shift-translated | |||
| 575 | action that would normally deactivate the mark. | 575 | action that would normally deactivate the mark. |
| 576 | @end defopt | 576 | @end defopt |
| 577 | 577 | ||
| 578 | @deffn Subroutine use-region-p | 578 | @defun use-region-p |
| 579 | This function returns @code{t} if Transient Mark mode is enabled, the | 579 | This function returns @code{t} if Transient Mark mode is enabled, the |
| 580 | mark is active, and there's a valid region in the buffer. Commands | 580 | mark is active, and there's a valid region in the buffer. Commands |
| 581 | that operate on the region (instead of on text near point) when | 581 | that operate on the region (instead of on text near point) when |
| 582 | there's an active mark should use this subroutine to test whether to | 582 | there's an active mark should use this subroutine to test whether to |
| 583 | do that. | 583 | do that. |
| 584 | @end deffn | 584 | @end defun |
| 585 | 585 | ||
| 586 | @defopt mark-even-if-inactive | 586 | @defopt mark-even-if-inactive |
| 587 | If this is non-@code{nil}, Lisp programs and the Emacs user can use the | 587 | If this is non-@code{nil}, Lisp programs and the Emacs user can use the |