summaryrefslogtreecommitdiff
path: root/lisp/org/org-ctags.el
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2014-01-04 18:56:08 -0800
committerPaul Eggert <eggert@cs.ucla.edu>2014-01-04 18:56:08 -0800
commitda5ecfa9b951691fc8bbf17f24fc8626216a706b (patch)
tree578d41e67060235d3de230b39c9326d683d77014 /lisp/org/org-ctags.el
parent5a0f4e9062f20f26a3f3b89e60a7bf2fd136e4c0 (diff)
downloademacs-da5ecfa9b951691fc8bbf17f24fc8626216a706b.tar.gz
Spelling fixes.
* lib-src/Makefile.in (regex.o): Remove reference to no-longer-used macros CONFIG_BROKETS and INHIBIT_STRING_HEADER. "BROKETS" was a misspelling anyway.... * src/nsterm.h (updateCollectionBehavior): Rename from updateCollectionBehaviour. All uses changed.
Diffstat (limited to 'lisp/org/org-ctags.el')
-rw-r--r--lisp/org/org-ctags.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/org/org-ctags.el b/lisp/org/org-ctags.el
index 41775bdab6d..faf543be1b5 100644
--- a/lisp/org/org-ctags.el
+++ b/lisp/org/org-ctags.el
@@ -63,19 +63,19 @@
;; with the same name as the link; then, if unsuccessful, ask the user if
;; he/she wants to rebuild the 'TAGS' database and try again; then ask if
;; the user wishes to append 'tag' as a new toplevel heading at the end of
-;; the buffer; and finally, defer to org's default behaviour which is to
+;; the buffer; and finally, defer to org's default behavior which is to
;; search the entire text of the current buffer for 'tag'.
;;
-;; This behaviour can be modified by changing the value of
+;; This behavior can be modified by changing the value of
;; ORG-CTAGS-OPEN-LINK-FUNCTIONS. For example I have the following in my
-;; .emacs, which describes the same behaviour as the above paragraph with
+;; .emacs, which describes the same behavior as the above paragraph with
;; one difference:
;;
;; (setq org-ctags-open-link-functions
;; '(org-ctags-find-tag
;; org-ctags-ask-rebuild-tags-file-then-find-tag
;; org-ctags-ask-append-topic
-;; org-ctags-fail-silently)) ; <-- prevents org default behaviour
+;; org-ctags-fail-silently)) ; <-- prevents org default behavior
;;
;;
;; Usage