diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2005-07-14 10:05:14 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2005-07-14 10:05:14 +0000 |
commit | eba72fc190a4083d114615d42b427ad09d589636 (patch) | |
tree | d992cd9fae0713e836b0553240e3790ef9fbdbff /lisp/add-log.el | |
parent | ef029e5a69e9c653f5838674e4fbc382421106b9 (diff) | |
download | emacs-eba72fc190a4083d114615d42b427ad09d589636.tar.gz |
(add-log-mailing-address, change-log-merge): Doc fix.
(change-log-get-method-definition): Fix typo in docstring.
Diffstat (limited to 'lisp/add-log.el')
-rw-r--r-- | lisp/add-log.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/add-log.el b/lisp/add-log.el index ec802ef4ae7..27da19ee602 100644 --- a/lisp/add-log.el +++ b/lisp/add-log.el @@ -70,7 +70,7 @@ This defaults to the value returned by the function `user-full-name'." ;;;###autoload (defcustom add-log-mailing-address nil - "*Electronic mail addresses of user, for inclusion in ChangeLog headers. + "*Email addresses of user, for inclusion in ChangeLog headers. This defaults to the value of `user-mail-address'. In addition to being a simple string, this value can also be a list. All elements will be recognized as referring to the same user; when creating a new @@ -976,7 +976,7 @@ Has a preference of looking backwards." (goto-char (match-end 0))) (defun change-log-get-method-definition () -"For objective C, return the method name if we are in a method." +"For Objective C, return the method name if we are in a method." (let ((change-log-get-method-definition-md "[")) (save-excursion (if (re-search-backward "^@implementation\\s-*\\([A-Za-z_]*\\)" nil t) @@ -1022,7 +1022,7 @@ Point is assumed to be at the start of the entry." ;;;###autoload (defun change-log-merge (other-log) - "Merge the contents of ChangeLog file OTHER-LOG with this buffer. + "Merge the contents of change log file OTHER-LOG with this buffer. Both must be found in Change Log mode (since the merging depends on the appropriate motion commands). OTHER-LOG can be either a file name or a buffer. |