From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jonas Bernoulli Subject: [PATCH] Fix typos Date: Tue, 12 Nov 2019 14:44:05 +0100 Message-ID: <874kz9mcpm.fsf@bernoul.li> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:52089) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iUWVd-0003jK-L2 for emacs-orgmode@gnu.org; Tue, 12 Nov 2019 08:47:10 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iUWVY-0005ah-VV for emacs-orgmode@gnu.org; Tue, 12 Nov 2019 08:47:05 -0500 Received: from mail.hostpark.net ([212.243.197.30]:52988) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1iUWVY-0005Za-Jp for emacs-orgmode@gnu.org; Tue, 12 Nov 2019 08:47:00 -0500 Received: from localhost (localhost [127.0.0.1]) by mail.hostpark.net (Postfix) with ESMTP id 3650FB7BBE for ; Tue, 12 Nov 2019 14:46:57 +0100 (CET) Received: from mail.hostpark.net ([127.0.0.1]) by localhost (mail1.hostpark.net [127.0.0.1]) (amavisd-new, port 10124) with ESMTP id 3iXdkSqGfRMt for ; Tue, 12 Nov 2019 14:46:23 +0100 (CET) Received: from customer (localhost [127.0.0.1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.hostpark.net (Postfix) with ESMTPSA id E8E3FB7BCC for ; Tue, 12 Nov 2019 14:44:05 +0100 (CET) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: emacs-orgmode Please consider applying the below patch, which fixes many spelling errors. I did not write a commit message that lists every file and function/variable that happened to contain a typo. That seems rather unnecessary for this type of change, but if you want that I can do it. In addition to the below typos I also found some things I don't know how to deal with: * "visibile" as a supported value of org-s5-control-visibility * "ded" appearing in doc/orgcard.tex Cheers, Jonas --- README_maintainer | 4 ++-- contrib/lisp/ob-oz.el | 2 +- contrib/lisp/ob-spice.el | 6 +++--- contrib/lisp/ol-notmuch.el | 6 +++--- contrib/lisp/org-annotate-file.el | 2 +- contrib/lisp/org-collector.el | 2 +- contrib/lisp/org-expiry.el | 2 +- contrib/lisp/org-mac-link.el | 2 +- contrib/lisp/org-passwords.el | 2 +- contrib/lisp/org-screenshot.el | 6 +++--- contrib/lisp/org-sudoku.el | 2 +- contrib/lisp/org-toc.el | 2 +- contrib/lisp/orgtbl-sqlinsert.el | 2 +- contrib/lisp/ox-deck.el | 16 ++++++++-------- contrib/lisp/ox-groff.el | 2 +- contrib/lisp/ox-koma-letter.el | 2 +- contrib/lisp/ox-s5.el | 4 ++-- contrib/scripts/StartOzServer.oz | 4 ++-- doc/.aspell.org.conf | 2 +- doc/doc-setup.org | 2 +- doc/org-guide.org | 2 +- doc/org-manual.org | 10 +++++----- etc/ORG-NEWS | 26 +++++++++++++------------- lisp/ob-C.el | 6 +++--- lisp/org-agenda.el | 8 ++++---- lisp/org-attach-git.el | 4 ++-- lisp/org-feed.el | 2 +- lisp/org-plot.el | 2 +- lisp/org-table.el | 2 +- lisp/org.el | 6 +++--- lisp/ox-odt.el | 6 +++--- mk/eldo.el | 2 +- testing/examples/ob-awk-test.org | 4 ++-- testing/lisp/test-ob-sqlite.el | 2 +- testing/lisp/test-org-agenda.el | 2 +- testing/lisp/test-org-attach.el | 2 +- testing/lisp/test-org.el | 8 ++++---- 37 files changed, 83 insertions(+), 83 deletions(-) diff --git a/README_maintainer b/README_maintainer index a5eda1caf..d2e9ada50 100644 --- a/README_maintainer +++ b/README_maintainer @@ -42,7 +42,7 @@ The release number for minor releases look like this: =9.1.7= Minor releases are small amends to main releases. Usually they fix critical bugs discovered in a main release. Minor bugs are usually -not fixed -- they will be adressed in the next main release. +not fixed -- they will be addressed in the next main release. Only the fix to the bug is bundled into a release, without the main development work going on in the master branch. Since the bug fix @@ -194,7 +194,7 @@ The list of all contributors from who we have the papers is kept on Worg at https://orgmode.org/worg/org-contribute.html, so that committers can check if a patch can go into the core. -The assignment process does not allways go smoothly, and it has +The assignment process does not always go smoothly, and it has happened several times that it gets stuck or forgotten at the FSF. The contact at the FSF for this is: mailto:copyright-clerk@fsf.org diff --git a/contrib/lisp/ob-oz.el b/contrib/lisp/ob-oz.el index 626c4f316..46bf536f7 100644 --- a/contrib/lisp/ob-oz.el +++ b/contrib/lisp/ob-oz.el @@ -106,7 +106,7 @@ (require 'mozart nil t) ;; back any results from Oz to Emacs. The following code creates a ;; socket for sending code to the OPI compiler and results are ;; returned by the same socket. On the Oz side, a socket is opened and -;; conected to the compiler of the OPI (via oz-send-string). On the +;; connected to the compiler of the OPI (via oz-send-string). On the ;; Emacs side, a connection to this socket is created for feeding code ;; and receiving results. This additional communication channel to the ;; OPI compiler ensures that results are returned cleanly (e.g., only diff --git a/contrib/lisp/ob-spice.el b/contrib/lisp/ob-spice.el index 24ef3c874..c452c993f 100644 --- a/contrib/lisp/ob-spice.el +++ b/contrib/lisp/ob-spice.el @@ -58,7 +58,7 @@ (defun org-babel-expand-body:spice (body params) (progn ;loop through the words (if (string-match "\\$\\(.*\\)\\[\\(.*\\)\\]" word) (progn - ;; if matchs a vector variable format + ;; if matches a vector variable format (setq varname (match-string 1 word)) (setq varindex (match-string 2 word)) ;; search varname in vars and use the value of varindex to word @@ -75,7 +75,7 @@ (defun org-babel-expand-body:spice (body params) ) ; end of (if (string-match "\\$\\(.*\\)\\[\\(.*\\)\\]" word)) (if (string-match "\\$\\(.*\\)\\." word) ; if variable has a dot in the end (progn - ;; if matchs a non-vector variable format + ;; if matches a non-vector variable format (setq varname (match-string 1 word)) (setq newword (assoc-default varname vars @@ -92,7 +92,7 @@ (defun org-babel-expand-body:spice (body params) );; end of (if (string-match "\\$\\(.*\\)\\." word) (if (string-match "\\$\\(.*\\)" word) (progn - ;; if matchs a non-vector variable format + ;; if matches a non-vector variable format (setq varname (match-string 1 word)) (setq newword (assoc-default varname vars diff --git a/contrib/lisp/ol-notmuch.el b/contrib/lisp/ol-notmuch.el index 3ad82984c..d26d775a4 100644 --- a/contrib/lisp/ol-notmuch.el +++ b/contrib/lisp/ol-notmuch.el @@ -23,9 +23,9 @@ ;;; Commentary: -;; This file implements links to notmuch messages and "searchs". A +;; This file implements links to notmuch messages and "searches". A ;; search is a query to be performed by notmuch; it is the equivalent -;; to folders in other mail clients. Similarly, mails are refered to +;; to folders in other mail clients. Similarly, mails are referred to ;; by a query, so both a link can refer to several mails. ;; Links have one the following form @@ -35,7 +35,7 @@ ;; The first form open the queries in notmuch-show mode, whereas the ;; second link open it in notmuch-search mode. Note that queries are ;; performed at the time the link is opened, and the result may be -;; different from whet the link was stored. +;; different from when the link was stored. ;;; Code: diff --git a/contrib/lisp/org-annotate-file.el b/contrib/lisp/org-annotate-file.el index b8e8bd9cb..e1f1f13cb 100644 --- a/contrib/lisp/org-annotate-file.el +++ b/contrib/lisp/org-annotate-file.el @@ -51,7 +51,7 @@ ;; C-c C-l (on the above line for example) you will get: ;; * ~/org-annotate-file.el -;; ** `org-annotate-file-add-search` to non-nil value. Then whe... +;; ** `org-annotate-file-add-search` to non-nil value. Then when... ;; Note that both of the above will be links. diff --git a/contrib/lisp/org-collector.el b/contrib/lisp/org-collector.el index 833ecbf51..937d03eb4 100644 --- a/contrib/lisp/org-collector.el +++ b/contrib/lisp/org-collector.el @@ -111,7 +111,7 @@ (put 'org-collector-error (defun org-dblock-write:propview (params) "collect the column specification from the #+cols line -preceeding the dblock, then update the contents of the dblock." +preceding the dblock, then update the contents of the dblock." (interactive) (condition-case er (let ((cols (plist-get params :cols)) diff --git a/contrib/lisp/org-expiry.el b/contrib/lisp/org-expiry.el index 5304d573f..a7ee0230d 100644 --- a/contrib/lisp/org-expiry.el +++ b/contrib/lisp/org-expiry.el @@ -52,7 +52,7 @@ ;; This entry will expire on the 14th, january 2008, one week after its ;; creation date. ;; -;; What happen when an entry is expired? Nothing until you explicitely +;; What happen when an entry is expired? Nothing until you explicitly ;; M-x org-expiry-process-entries When doing this, org-expiry will check ;; for expired entries and request permission to process them. ;; diff --git a/contrib/lisp/org-mac-link.el b/contrib/lisp/org-mac-link.el index 6bd6dc5c9..7952b35fb 100644 --- a/contrib/lisp/org-mac-link.el +++ b/contrib/lisp/org-mac-link.el @@ -514,7 +514,7 @@ (defun as-get-selected-together-items () ;;;###autoload (defun org-mac-together-get-selected () (interactive) - (message "Applescript: Getting Togther items...") + (message "Applescript: Getting Together items...") (org-mac-paste-applescript-links (as-get-selected-together-items))) ;;;###autoload diff --git a/contrib/lisp/org-passwords.el b/contrib/lisp/org-passwords.el index 1f32f9b38..4bdd80491 100644 --- a/contrib/lisp/org-passwords.el +++ b/contrib/lisp/org-passwords.el @@ -348,7 +348,7 @@ (defun org-passwords-random-words-attach-number-of-words separator))) (defun org-passwords-substitute (string-to-change list-of-substitutions) - "Substitutes each appearence in STRING-TO-CHANGE of the `car' of + "Substitutes each appearance in STRING-TO-CHANGE of the `car' of each element of LIST-OF-SUBSTITUTIONS by the `cdr' of that element. For example: (org-passwords-substitute \"ab\" \'((\"a\" . \"b\") (\"b\" . \"c\"))) diff --git a/contrib/lisp/org-screenshot.el b/contrib/lisp/org-screenshot.el index abac4a19c..58ebaa44b 100644 --- a/contrib/lisp/org-screenshot.el +++ b/contrib/lisp/org-screenshot.el @@ -86,7 +86,7 @@ (defgroup org-screenshot nil (defcustom org-screenshot-image-directory "./images/" "Directory in which screenshot image files will be stored, it -be automatically created if it does't already exist." +be automatically created if it doesn't already exist." :type 'string :group 'org-screenshot) @@ -290,7 +290,7 @@ (defun org-screenshot-take (&optional delay) (setq num (* num 4) cnt (+ cnt (if (< cnt 3) 1 2)))) cnt)) - (t (error "Invald delay")))) + (t (error "Invalid delay")))) (when (and org-screenshot-process (member (process-status org-screenshot-process) '(run stop))) @@ -331,7 +331,7 @@ (make-variable-buffer-local 'org-screenshot-file-list) (make-variable-buffer-local 'org-screenshot-rotation-index) (defun org-screenshot-rotation-init (lastfile) - "Initialize variable `org-screenshot-file-list' variabel with + "Initialize variable `org-screenshot-file-list' variable with the list of PNG files in `org-screenshot-image-directory' sorted by most recent first" (setq diff --git a/contrib/lisp/org-sudoku.el b/contrib/lisp/org-sudoku.el index 9537c0c0a..67665ffbe 100644 --- a/contrib/lisp/org-sudoku.el +++ b/contrib/lisp/org-sudoku.el @@ -1,4 +1,4 @@ -;;; org-sudoku.el --- Greate and solve SUDOKU games in Org tables +;;; org-sudoku.el --- Create and solve SUDOKU games in Org tables ;; Copyright (C) 2012-2018 Free Software Foundation, Inc. ;; diff --git a/contrib/lisp/org-toc.el b/contrib/lisp/org-toc.el index 3a05c4a5d..08cc9e9bf 100644 --- a/contrib/lisp/org-toc.el +++ b/contrib/lisp/org-toc.el @@ -90,7 +90,7 @@ (defcustom org-toc-recenter 0 (defcustom org-toc-info-exclude '("ALLTAGS") "A list of excluded properties when displaying info in the -echo-area. The COLUMNS property is always exluded." +echo-area. The COLUMNS property is always excluded." :group 'org-toc :type 'lits) diff --git a/contrib/lisp/orgtbl-sqlinsert.el b/contrib/lisp/orgtbl-sqlinsert.el index 759c464f2..49a455890 100644 --- a/contrib/lisp/orgtbl-sqlinsert.el +++ b/contrib/lisp/orgtbl-sqlinsert.el @@ -36,7 +36,7 @@ (defun orgtbl-to-sqlinsert (table params) Names and strings are modified slightly by default. Single-ticks are doubled as per SQL's standard mechanism. Backslashes and dollar signs are deleted. And tildes are changed to spaces. -These modifications were chosed for use with TeX. See +These modifications were chosen for use with TeX. See ORGTBL-SQL-STRIP-AND-QUOTE. Supports all parameters from ORGTBL-TO-GENERIC. New to this function diff --git a/contrib/lisp/ox-deck.el b/contrib/lisp/ox-deck.el index 427c7d765..3b911e16e 100644 --- a/contrib/lisp/ox-deck.el +++ b/contrib/lisp/ox-deck.el @@ -32,7 +32,7 @@ ;; ;; Add the path to the extracted code to the variable ;; `org-deck-directories' There are a number of customization in the -;; org-export-deck group, most of which can be overrriden with buffer +;; org-export-deck group, most of which can be overridden with buffer ;; local customization (starting with DECK_.) ;; See ox.el and ox-html.el for more details on how this exporter @@ -137,7 +137,7 @@ (defun org-deck-list-components () (defcustom org-deck-include-extensions nil "If non-nil, list of extensions to include instead of all available. -Can be overriden or set with the DECK_INCLUDE_EXTENSIONS property. +Can be overridden or set with the DECK_INCLUDE_EXTENSIONS property. During output generation, the extensions found by `org-deck--find-extensions' are searched for the appropriate files (scripts and/or stylesheets) to include in the generated @@ -147,12 +147,12 @@ (defcustom org-deck-include-extensions nil (defcustom org-deck-exclude-extensions nil "If non-nil, list of extensions to exclude. -Can be overriden or set with the DECK_EXCLUDE_EXTENSIONS property." +Can be overridden or set with the DECK_EXCLUDE_EXTENSIONS property." :group 'org-export-deck :type '(repeat (string :tag "Extension"))) (defcustom org-deck-theme "swiss.css" - "deck.js theme. Can be overriden with the DECK_THEME property. + "deck.js theme. Can be overridden with the DECK_THEME property. If this value contains a path component (\"/\"), it is used as a literal path (url). Otherwise it is prepended with `org-deck-base-url'/themes/style/." @@ -160,7 +160,7 @@ (defcustom org-deck-theme "swiss.css" :type 'string) (defcustom org-deck-transition "fade.css" - "deck.js transition theme. Can be overriden with the + "deck.js transition theme. Can be overridden with the DECK_TRANSITION property. If this value contains a path component (\"/\"), it is used as a literal path (url). Otherwise it is prepended with @@ -171,7 +171,7 @@ (defcustom org-deck-transition "fade.css" (defcustom org-deck-base-url "deck.js" "Url prefix to deck.js base directory containing the core, extensions and themes directories. -Can be overriden with the DECK_BASE_URL property." +Can be overridden with the DECK_BASE_URL property." :group 'org-export-deck :type 'string) @@ -180,7 +180,7 @@ (defvar org-deck-pre/postamble-styles (preamble "position: absolute; top: 10px;") (postamble "")) "Alist of css styles for the preamble, postamble and both respectively. -Can be overriden in `org-deck-styles'. See also `org-html-divs'.") +Can be overridden in `org-deck-styles'. See also `org-html-divs'.") (defcustom org-deck-postamble "

%a - %t

" "Non-nil means insert a postamble in HTML export. @@ -239,7 +239,7 @@ (defvar org-deck-toc-styles "#table-of-contents ul {margin-bottom: 0;}" "#table-of-contents li {padding: 0;}") "\n") "Default css styles used for formatting a table of contents slide. -Can be overriden in `org-deck-styles'. +Can be overridden in `org-deck-styles'. Note that when the headline numbering option is true, a \"list-style: none\" is automatically added to avoid both numbers and bullets on the toc entries.") diff --git a/contrib/lisp/ox-groff.el b/contrib/lisp/ox-groff.el index 85e24a5ec..97d307ad3 100644 --- a/contrib/lisp/ox-groff.el +++ b/contrib/lisp/ox-groff.el @@ -429,7 +429,7 @@ (defcustom org-groff-special-char is replace on the value of the CDR. " :group 'org-export-groff :type '(list - (cons :tag "Character Subtitute" + (cons :tag "Character Substitute" (string :tag "Original Character Group") (string :tag "Replacement Character")))) diff --git a/contrib/lisp/ox-koma-letter.el b/contrib/lisp/ox-koma-letter.el index abc0c2873..f3a27a3b1 100644 --- a/contrib/lisp/ox-koma-letter.el +++ b/contrib/lisp/ox-koma-letter.el @@ -921,7 +921,7 @@ (defun org-koma-letter-export-as-latex When optional argument BODY-ONLY is non-nil, only write code between \"\\begin{letter}\" and \"\\end{letter}\". -EXT-PLIST, when provided, is a proeprty list with external +EXT-PLIST, when provided, is a property list with external parameters overriding Org default settings, but still inferior to file-local settings. diff --git a/contrib/lisp/ox-s5.el b/contrib/lisp/ox-s5.el index 0496aae19..243332519 100644 --- a/contrib/lisp/ox-s5.el +++ b/contrib/lisp/ox-s5.el @@ -98,7 +98,7 @@ (defcustom org-s5-version "1.2a2" :type 'string) (defcustom org-s5-theme-file nil -"Url to S5 theme (slides.css) file. Can be overriden with the +"Url to S5 theme (slides.css) file. Can be overridden with the S5_THEME_FILE property. If nil, defaults to `org-s5-ui-url'/default/slides.css. If it starts with anything but \"http\" or \"/\", it is used as-is. Otherwise the link in generated @@ -111,7 +111,7 @@ (defcustom org-s5-theme-file nil (defcustom org-s5-ui-url "ui" "Base url to directory containing S5 \"default\" subdirectory and the \"s5-notes.html\" file. -Can be overriden with the S5_UI_URL property." +Can be overridden with the S5_UI_URL property." :group 'org-export-s5 :type 'string) diff --git a/contrib/scripts/StartOzServer.oz b/contrib/scripts/StartOzServer.oz index df3ebe636..79b86a8bc 100644 --- a/contrib/scripts/StartOzServer.oz +++ b/contrib/scripts/StartOzServer.oz @@ -74,10 +74,10 @@ MyCompiler = Emacs.condSend.compiler %% !! catching some exceptions does not work?? -%% exception is not catched +%% exception is not caught try {Bla} catch E then {Error.printException E} {Browse nil} end -%% exception is catched +%% exception is caught try {Browse 1 div 0} catch E then {Error.printException E} {Browse nil} end {Browse ok} diff --git a/doc/.aspell.org.conf b/doc/.aspell.org.conf index facdc494b..dd8601d6f 100644 --- a/doc/.aspell.org.conf +++ b/doc/.aspell.org.conf @@ -68,7 +68,7 @@ suggest true # Miscellaneous # # Org documentation uses a lot of compound words. Try and ignore them -# rather than including them in a specfic word list. +# rather than including them in a specific word list. run-together-limit 2 run-together-min 2 diff --git a/doc/doc-setup.org b/doc/doc-setup.org index 8f7ec4099..b0eef09bf 100644 --- a/doc/doc-setup.org +++ b/doc/doc-setup.org @@ -30,7 +30,7 @@ # modifications. #+macro: version (eval (with-current-buffer (find-file-noselect "../lisp/org.el") (org-with-point-at 1 (if (re-search-forward "Version: +\\([0-9.]+\\)" nil t) (mapconcat #'identity (cl-subseq (split-string (match-string-no-properties 1) "\\.") 0 2) ".") (error "Missing \"Version\" keyword in \"org.el\""))))) -# The "kbd" macro turns KBD into @kbd{KBD}. Additionnally, it +# The "kbd" macro turns KBD into @kbd{KBD}. Additionally, it # encloses case-sensitive special keys (SPC, RET...) within @key{...}. #+macro: kbd (eval (let ((case-fold-search nil) (regexp (regexp-opt '("SPC" "RET" "LFD" "TAB" "BS" "ESC" "DELETE" "SHIFT" "Ctrl" "Meta" "Alt" "Cmd" "Super" "UP" "LEFT" "RIGHT" "DOWN") 'words))) (format "@@texinfo:@kbd{@@%s@@texinfo:}@@" (replace-regexp-in-string regexp "@@texinfo:@key{@@\\&@@texinfo:}@@" $1 t)))) diff --git a/doc/org-guide.org b/doc/org-guide.org index db90702f7..9e76e5af0 100644 --- a/doc/org-guide.org +++ b/doc/org-guide.org @@ -806,7 +806,7 @@ a difference only in the agenda. #+attr_texinfo: :sep ; - {{{kbd(C-c \,)}}} :: - Set the priority of the current headline. Pres {{{kbd(A)}}}, + Set the priority of the current headline. Press {{{kbd(A)}}}, {{{kbd(B)}}} or {{{kbd(C)}}} to select a priority, or {{{kbd(SPC)}}} to remove the cookie. diff --git a/doc/org-manual.org b/doc/org-manual.org index 5e69ef074..286b9e004 100644 --- a/doc/org-manual.org +++ b/doc/org-manual.org @@ -1289,7 +1289,7 @@ Calculator Manual]]). Org makes it easy to format tables in plain ASCII. Any line with =|= as the first non-whitespace character is considered part of a table. =|= is also the column separator[fn:17]. Moreover, a line starting -with =|-= is a horizontal rule. It separates rows explicitely. Rows +with =|-= is a horizontal rule. It separates rows explicitly. Rows before the first horizontal rule are header lines. A table might look like this: @@ -3118,7 +3118,7 @@ Here is the full set of built-in link types: - =doi= :: - Link to an electronic ressource, through its handle. + Link to an electronic resource, through its handle. - =elisp= :: @@ -8012,7 +8012,7 @@ mentioning. ~org-attach-id-to-path-function-list~ if you want the folder structure in any other way. All functions in this list will be tried when resolving existing ID's into paths, to maintain backward - compatability with existing folders in your system. + compatibility with existing folders in your system. - ~org-attach-expert~ :: #+vindex: org-attach-expert @@ -10879,7 +10879,7 @@ suited for source code and similar examples. There is one limitation, however. You must insert a comma right before lines starting with either =*=, =,*=, =#+= or =,#+=, as those may be interpreted as outlines nodes or some other special syntax. -Org transparently strips these additonal commas whenever it accesses +Org transparently strips these additional commas whenever it accesses the contents of the block. #+begin_example @@ -17402,7 +17402,7 @@ follows from the type specified above. Aligned if it is a table. Usage example: =:results value raw=. #+cindex: @samp{wrap}, header argument -The =wrap= header argument unconditionnally marks the results block by +The =wrap= header argument unconditionally marks the results block by appending strings to =#+BEGIN_= and =#+END_=. If no string is specified, Org wraps the results in a =#+BEGIN_results= ... =#+END_results= block. It takes precedent over the =results= diff --git a/etc/ORG-NEWS b/etc/ORG-NEWS index bdcfc24fd..283f32e0c 100644 --- a/etc/ORG-NEWS +++ b/etc/ORG-NEWS @@ -75,7 +75,7 @@ group 3. When tangling, user usually just wants to tangle literally code instead of prepend inserting a ~(ns ..)~ statement before source block code. Now, when you have no ~:ns~ header argument specified, this -behavior will not happend automatically. +behavior will not happen automatically. *** Change in behavior on exit from an Org edit buffer Org will no longer attempt to restore the window configuration in the frame to which the user returns after editing a source block with @@ -214,7 +214,7 @@ They are added mostly for internal restructuring purposes, but can ofc. be used for other things as well. *** New link-type: Attachment -Attachment-links are now first-class citizens. They mimick file-links +Attachment-links are now first-class citizens. They mimic file-links in everything they do but use the existing attachment-folder as a base when expanding the links. Both =DIR= and =ID= properties are used to try to resolve the links, in exactly the same way as Org-Attach uses @@ -256,14 +256,14 @@ Supported LaTeX attributes are ~:float~, ~:center~, ~:font~ and *** Attach buffer contents to headline With == key from attachment dispatcher (==), it is now possible to write the contents of a buffer to a file in the headline -attachement directory. +attachment directory. *** iCalendar export respects a =CLASS= property Set the =CLASS= property on an entry to specify a visibility class for that entry only during iCalendar export. The property can be set to anything the calendar server supports. The iCalendar standard defines the values =PUBLIC=, =CONFIDENTIAL=, =PRIVATE=, which can be -interpreted as publicly visable, accessible to a specific group, and +interpreted as publicly visible, accessible to a specific group, and private respectively. This property can be inherited during iCalendar export, depending on @@ -296,8 +296,8 @@ days in the past. == (~org-habit-toggle-display-in-agenda~) in an agenda toggles the display of all habits to those which are undone and scheduled. This is a function for convenience. -*** New paramater for SQL Babel blocks: ~:dbconnection~ -The new paramater ~:dbconnection~ allows to specify a connection name +*** New parameter for SQL Babel blocks: ~:dbconnection~ +The new parameter ~:dbconnection~ allows to specify a connection name in a SQL block header: this name is used to look up connection parameters in ~sql-connection-alist~. @@ -358,10 +358,10 @@ You can install it back from MELPA. *** ~org-attach-directory~ It has been deprecated in favour of ~org-attach-id-dir~ which is less -ambigous given the restructured org-attach. +ambiguous given the restructured org-attach. *** ~org-enable-fixed-width-editor~ -This variable was not used throught the code base. +This variable was not used through the code base. ** Miscellaneous *** Change signature for ~org-list-to-subtree~ The function now accepts the level of the subtree as an optional @@ -456,7 +456,7 @@ Org 9.2 comes with a new template expansion mechanism, combining ~org-insert-structure-template~ bound to ~C-c C-,~. If you customized the ~org-structure-template-alist~ option manually, -you probably need to udpate it, see the docstring for accepted values. +you probably need to update it, see the docstring for accepted values. If you prefer using previous patterns, e.g. = \" +successful, return the portion between \" \" elements otherwise return nil. When MATHML-FILE is specified, write the results in to that file. When invoked as an interactive command, prompt for LATEX-FRAG, with initial value diff --git a/lisp/ox-odt.el b/lisp/ox-odt.el index be591928e..f9c4a93cc 100644 --- a/lisp/ox-odt.el +++ b/lisp/ox-odt.el @@ -814,7 +814,7 @@ (defcustom org-odt-table-styles TABLE-STYLE-NAME is the style associated with the table through \"#+ATTR_ODT: :style TABLE-STYLE-NAME\" line. -TABLE-TEMPLATE-NAME is a set of - upto 9 - automatic +TABLE-TEMPLATE-NAME is a set of - up to 9 - automatic TABLE-CELL-STYLE-NAMEs and PARAGRAPH-STYLE-NAMEs (as defined below) that is included in `org-odt-content-template-file'. @@ -1414,7 +1414,7 @@ (defun org-odt-template (contents info) ;; the resulting odt file. (setq-local backup-inhibited t) - ;; Outline numbering is retained only upto LEVEL. + ;; Outline numbering is retained only up to LEVEL. ;; To disable outline numbering pass a LEVEL of 0. (goto-char (point-min)) @@ -3241,7 +3241,7 @@ (defun org-odt-get-table-cell-styles (table-cell info) (when style-spec ;; LibreOffice - particularly the Writer - honors neither table ;; templates nor custom table-cell styles. Inorder to retain - ;; inter-operability with LibreOffice, only automatic styles are + ;; interoperability with LibreOffice, only automatic styles are ;; used for styling of table-cells. The current implementation is ;; congruent with ODF-1.2 specification and hence is ;; future-compatible. diff --git a/mk/eldo.el b/mk/eldo.el index 6a5675aed..ba8c46400 100644 --- a/mk/eldo.el +++ b/mk/eldo.el @@ -100,7 +100,7 @@ (defun eldo-write-hooks (hooks) (goto-char (point-max)))) (defun eldo-write-commands (commands) - "Write commands documentaiton in the current buffer." + "Write commands documentation in the current buffer." (insert "\n* Commands\n") (org-set-property "CUSTOM_ID" "commands") (dolist (c commands) diff --git a/testing/examples/ob-awk-test.org b/testing/examples/ob-awk-test.org index 63e070ff8..f9b73125a 100644 --- a/testing/examples/ob-awk-test.org +++ b/testing/examples/ob-awk-test.org @@ -6,13 +6,13 @@ :ID: 9e998b2a-3581-43fe-b26d-07d3c507b86a :END: Run without input stream -#+begin_src awk :ouput silent :results silent +#+begin_src awk :output silent :results silent BEGIN { print 42 } #+end_src -Use a code block ouput as an input +Use a code block output as an input #+begin_src awk :stdin genseq :results silent { print 42+$1 diff --git a/testing/lisp/test-ob-sqlite.el b/testing/lisp/test-ob-sqlite.el index 4a66a0813..f6ffa6ab4 100644 --- a/testing/lisp/test-ob-sqlite.el +++ b/testing/lisp/test-ob-sqlite.el @@ -25,7 +25,7 @@ (unless (featurep 'ob-sqlite) (signal 'missing-test-dependency "Support for sqlite code blocks")) (ert-deftest ob-sqlite/table-variables-with-commas () - "Test of a table variable that contains commas. This garantees that this code path results in a valid CSV." + "Test of a table variable that contains commas. This guarantees that this code path results in a valid CSV." (should (equal '(("Mr Test A. Sql" "Minister for Science, Eternal Happiness, and Finance")) diff --git a/testing/lisp/test-org-agenda.el b/testing/lisp/test-org-agenda.el index bdee2bfe7..17822272f 100644 --- a/testing/lisp/test-org-agenda.el +++ b/testing/lisp/test-org-agenda.el @@ -28,7 +28,7 @@ (require 'org-agenda) (eval-and-compile (require 'cl-lib)) -;; General auxilliaries +;; General auxiliaries (defun org-test-agenda--agenda-buffers () "Return agenda buffers in a list." diff --git a/testing/lisp/test-org-attach.el b/testing/lisp/test-org-attach.el index 37cc39d85..f910526c2 100644 --- a/testing/lisp/test-org-attach.el +++ b/testing/lisp/test-org-attach.el @@ -98,7 +98,7 @@ (ert-deftest test-org-attach/dir () (org-test-in-example-file org-test-attachments-file (goto-char 401) ;; H3.1 (let ((org-attach-use-inheritance t)) - ;; This is where it get's a bit sketchy...! DIR always has + ;; This is where it gets a bit sketchy...! DIR always has ;; priority over ID, even if ID is declared "higher up" in the ;; tree. This can potentially be revised. But it is also ;; pretty clean. DIR is always higher in priority than ID right diff --git a/testing/lisp/test-org.el b/testing/lisp/test-org.el index 215d8fdb0..29c6ed754 100644 --- a/testing/lisp/test-org.el +++ b/testing/lisp/test-org.el @@ -2516,7 +2516,7 @@ (ert-deftest test-org/open-at-point/tag () (lambda (&rest args) (throw :result t)))) ;; When point isn't on a tag it's going to try other things, ;; possibly trying to open attachments which will return an - ;; error if there isn't an attachment. Supress that error. + ;; error if there isn't an attachment. Suppress that error. (ignore-errors (org-open-at-point)) nil))))) @@ -4862,7 +4862,7 @@ (ert-deftest test-org/schedule () (ert-deftest test-org/buffer-property-keys () "Test `org-buffer-property-keys' specifications." - ;; Retrieve properties accross siblings. + ;; Retrieve properties across siblings. (should (equal '("A" "B") (org-test-with-temp-text " @@ -4875,7 +4875,7 @@ (ert-deftest test-org/buffer-property-keys () :B: 1 :END:" (org-buffer-property-keys)))) - ;; Retrieve properties accross children. + ;; Retrieve properties across children. (should (equal '("A" "B") (org-test-with-temp-text " @@ -6258,7 +6258,7 @@ (ert-deftest test-org/toggle-tag () (ert-deftest test-org/tags-expand () "Test `org-tags-expand' specifications." - ;; Expand tag groups as a regexp enclosed withing curly brackets. + ;; Expand tag groups as a regexp enclosed within curly brackets. (should (equal "{\\<[ABC]\\>}" (org-test-with-temp-text "#+TAGS: [ A : B C ]" -- 2.24.0