summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/inline.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2017-10-27 20:04:47 -0400
committerGlenn Morris <rgm@gnu.org>2017-10-27 20:04:47 -0400
commite6b4e5ffdf30ef4d63614ccbe952f1efb25096a7 (patch)
tree87391d27ade99b534281606f1fd65be8912629ac /lisp/emacs-lisp/inline.el
parente8636ac8cc96e1e7e948f04091792da09dafcc76 (diff)
downloademacs-e6b4e5ffdf30ef4d63614ccbe952f1efb25096a7.tar.gz
emacs-e6b4e5ffdf30ef4d63614ccbe952f1efb25096a7.tar.bz2
emacs-e6b4e5ffdf30ef4d63614ccbe952f1efb25096a7.zip
Fix some doc typos
* lisp/calendar/todo-mode.el (todo-next-item) (todo-previous-item, todo-toggle-item-header): * lisp/window.el (move-to-window-group-line): * src/editfns.c (Fformat): * test/lisp/calendar/todo-mode-tests.el (todo-test-move-item05): Fix doc typos. ; And in some comments.
Diffstat (limited to 'lisp/emacs-lisp/inline.el')
-rw-r--r--lisp/emacs-lisp/inline.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/inline.el b/lisp/emacs-lisp/inline.el
index 00e5e6eb48d..ff27158f836 100644
--- a/lisp/emacs-lisp/inline.el
+++ b/lisp/emacs-lisp/inline.el
@@ -59,7 +59,7 @@
;; and then M-: (macroexpand-all '(my-test1 y)) RET)
;; There is still one downside shared with the defmacro and cl-defsubst
;; approach: when the function is inlined, the scoping rules (dynamic or
-;; lexical) will be inherited from the the call site.
+;; lexical) will be inherited from the call site.
;; Of course, since define-inline defines a compiler macro, you can also do
;; call-site optimizations, just like you can with `defmacro', but not with