diff options
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/emacs-lisp/map.el | 2 | ||||
-rw-r--r-- | lisp/progmodes/ebrowse.el | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/map.el b/lisp/emacs-lisp/map.el index f2fa8061539..1f6f1ffbcda 100644 --- a/lisp/emacs-lisp/map.el +++ b/lisp/emacs-lisp/map.el @@ -207,7 +207,7 @@ MAP can be a list, hash-table or array." (defun map-do (function map) "Apply FUNCTION to each element of MAP and return nil. -FUNCTION.is called with two arguments, the key and the value." +FUNCTION is called with two arguments, the key and the value." (funcall (map--dispatch map :list #'map--do-alist :hash-table #'maphash diff --git a/lisp/progmodes/ebrowse.el b/lisp/progmodes/ebrowse.el index ca64af5c915..c9557900190 100644 --- a/lisp/progmodes/ebrowse.el +++ b/lisp/progmodes/ebrowse.el @@ -457,7 +457,7 @@ members." (defsubst ebrowse-extern-c-p (member) - "Value is non-nil if MEMBER.is `extern \"C\"'." + "Value is non-nil if MEMBER is `extern \"C\"'." (ebrowse-member-bit-set-p member 256)) |