aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggert2017-09-29 16:40:18 -0700
committerPaul Eggert2017-09-29 16:41:50 -0700
commitbbda601d1d4e125c9d3c374b56eee3e2e9623f1d (patch)
tree7df68498e8103e168d413adaa16d00269887da4f
parent695cf5300b4f5b0a8f3bd615b3259a99c5532b5e (diff)
downloademacs-bbda601d1d4e125c9d3c374b56eee3e2e9623f1d.tar.gz
emacs-bbda601d1d4e125c9d3c374b56eee3e2e9623f1d.zip
; Spelling fixes
-rw-r--r--doc/misc/efaq.texi2
-rw-r--r--etc/ORG-NEWS12
-rw-r--r--lisp/net/rcirc.el2
-rw-r--r--lisp/org/ob-sql.el2
-rw-r--r--lisp/org/org-datetree.el4
-rw-r--r--lisp/org/org-table.el2
-rw-r--r--lisp/progmodes/sh-script.el2
-rw-r--r--test/lisp/net/tramp-tests.el2
8 files changed, 14 insertions, 14 deletions
diff --git a/doc/misc/efaq.texi b/doc/misc/efaq.texi
index a8ece771fcd..7809cfe98ae 100644
--- a/doc/misc/efaq.texi
+++ b/doc/misc/efaq.texi
@@ -3501,7 +3501,7 @@ The most up-to-date official GNU software is normally kept at
3501 3501
3502A list of sites mirroring @samp{ftp.gnu.org} can be found at 3502A list of sites mirroring @samp{ftp.gnu.org} can be found at
3503 3503
3504@uref{httpss://www.gnu.org/prep/ftp} 3504@uref{https://www.gnu.org/prep/ftp}
3505 3505
3506@node Difference between Emacs and XEmacs 3506@node Difference between Emacs and XEmacs
3507@section What is the difference between Emacs and XEmacs (formerly Lucid Emacs)? 3507@section What is the difference between Emacs and XEmacs (formerly Lucid Emacs)?
diff --git a/etc/ORG-NEWS b/etc/ORG-NEWS
index d1e476267bf..b50ac7f05e7 100644
--- a/etc/ORG-NEWS
+++ b/etc/ORG-NEWS
@@ -50,8 +50,8 @@ You can now find them here :
50- https://github.com/org-mime/org-mime 50- https://github.com/org-mime/org-mime
51 51
52*** Change ~org-texinfo-classes~ value 52*** Change ~org-texinfo-classes~ value
53The value cannot support functions to create sectionning commands 53The value cannot support functions to create sectioning commands
54anymore. Also, the sectionning commands should include commands for 54anymore. Also, the sectioning commands should include commands for
55appendices. See the docstring for more information. 55appendices. See the docstring for more information.
56*** Removal of ~:sitemap-sans-extension~ 56*** Removal of ~:sitemap-sans-extension~
57 57
@@ -159,7 +159,7 @@ developers to prepend code to the scheme block being processed.
159Multiple ~:prologue~ headers can be added each of them using a string 159Multiple ~:prologue~ headers can be added each of them using a string
160with the content to be added. 160with the content to be added.
161 161
162The scheme blocks are prepared by surronding the code in the block 162The scheme blocks are prepared by surrounding the code in the block
163with a let form. The content of the ~:prologue~ headers are prepended 163with a let form. The content of the ~:prologue~ headers are prepended
164before this let form. 164before this let form.
165 165
@@ -280,7 +280,7 @@ argument for the scope of the clock table.
280Global table of contents are generated using vanilla Markdown syntax 280Global table of contents are generated using vanilla Markdown syntax
281instead of HTML. Also #+TOC keyword, including local table of 281instead of HTML. Also #+TOC keyword, including local table of
282contents, are now supported. 282contents, are now supported.
283**** Add Slovanian translations 283**** Add Slovenian translations
284**** Implement ~org-export-insert-image-links~ 284**** Implement ~org-export-insert-image-links~
285This new function is meant to be used in back-ends supporting images 285This new function is meant to be used in back-ends supporting images
286as descriptions of links, a.k.a. image links. See its docstring for 286as descriptions of links, a.k.a. image links. See its docstring for
@@ -467,7 +467,7 @@ far away in the future.
467*** Save point before opening a file with an unknown search option 467*** Save point before opening a file with an unknown search option
468 468
469When following a file link with a search option (e.g., =::#custom-id=) 469When following a file link with a search option (e.g., =::#custom-id=)
470that doesn't exist in the target file, save positon before raising an 470that doesn't exist in the target file, save position before raising an
471error. As a consequence, it is possible to jump back to the original 471error. As a consequence, it is possible to jump back to the original
472document with ~org-mark-ring-goto~ (default binding =C-c &=). 472document with ~org-mark-ring-goto~ (default binding =C-c &=).
473 473
@@ -479,7 +479,7 @@ See docstring for details.
479 479
480This variable is a ~defcustom~ and replaces the variable 480This variable is a ~defcustom~ and replaces the variable
481~org-babel-capitalize-example-region-markers~, which is a ~defvar~ and 481~org-babel-capitalize-example-region-markers~, which is a ~defvar~ and
482is now obselete. 482is now obsolete.
483*** =INCLUDE= keywords in commented trees are now ignored. 483*** =INCLUDE= keywords in commented trees are now ignored.
484*** Default value for ~org-texinfo-text-markup-alist~ changed. 484*** Default value for ~org-texinfo-text-markup-alist~ changed.
485 485
diff --git a/lisp/net/rcirc.el b/lisp/net/rcirc.el
index 127290e5988..5c785daa8a2 100644
--- a/lisp/net/rcirc.el
+++ b/lisp/net/rcirc.el
@@ -20,7 +20,7 @@
20;; GNU General Public License for more details. 20;; GNU General Public License for more details.
21 21
22;; You should have received a copy of the GNU General Public License 22;; You should have received a copy of the GNU General Public License
23;; along with GNU Emacs. If not, see <httpss://www.gnu.org/licenses/>. 23;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
24 24
25;;; Commentary: 25;;; Commentary:
26 26
diff --git a/lisp/org/ob-sql.el b/lisp/org/ob-sql.el
index 9250825d4e5..1b1d2dc09d3 100644
--- a/lisp/org/ob-sql.el
+++ b/lisp/org/ob-sql.el
@@ -127,7 +127,7 @@ SQL Server on Windows and Linux platform."
127 " ")) 127 " "))
128 128
129(defun org-babel-sql-dbstring-sqsh (host user password database) 129(defun org-babel-sql-dbstring-sqsh (host user password database)
130 "Make sqsh commmand line args for database connection. 130 "Make sqsh command line args for database connection.
131\"sqsh\" is one method to access Sybase or MS SQL via Linux platform" 131\"sqsh\" is one method to access Sybase or MS SQL via Linux platform"
132 (mapconcat #'identity 132 (mapconcat #'identity
133 (delq nil 133 (delq nil
diff --git a/lisp/org/org-datetree.el b/lisp/org/org-datetree.el
index 308f42ff6cf..6d1926bc15e 100644
--- a/lisp/org/org-datetree.el
+++ b/lisp/org/org-datetree.el
@@ -54,7 +54,7 @@ Added time stamp is active unless value is `inactive'."
54 "Find or create an entry for date D. 54 "Find or create an entry for date D.
55If KEEP-RESTRICTION is non-nil, do not widen the buffer. 55If KEEP-RESTRICTION is non-nil, do not widen the buffer.
56When it is nil, the buffer will be widened to make sure an existing date 56When it is nil, the buffer will be widened to make sure an existing date
57tree can be found. If it is the sympol `subtree-at-point', then the tree 57tree can be found. If it is the symbol `subtree-at-point', then the tree
58will be built under the headline at point." 58will be built under the headline at point."
59 (setq-local org-datetree-base-level 1) 59 (setq-local org-datetree-base-level 1)
60 (save-restriction 60 (save-restriction
@@ -94,7 +94,7 @@ will be built under the headline at point."
94Compared to `org-datetree-find-date-create' this function creates 94Compared to `org-datetree-find-date-create' this function creates
95entries ordered by week instead of months. 95entries ordered by week instead of months.
96When it is nil, the buffer will be widened to make sure an existing date 96When it is nil, the buffer will be widened to make sure an existing date
97tree can be found. If it is the sympol `subtree-at-point', then the tree 97tree can be found. If it is the symbol `subtree-at-point', then the tree
98will be built under the headline at point." 98will be built under the headline at point."
99 (setq-local org-datetree-base-level 1) 99 (setq-local org-datetree-base-level 1)
100 (save-restriction 100 (save-restriction
diff --git a/lisp/org/org-table.el b/lisp/org/org-table.el
index ae437908643..66907e2cd9c 100644
--- a/lisp/org/org-table.el
+++ b/lisp/org/org-table.el
@@ -5131,7 +5131,7 @@ information."
5131 (column 5131 (column
5132 ;; Call costly `org-export-table-cell-address' only if 5132 ;; Call costly `org-export-table-cell-address' only if
5133 ;; absolutely necessary, i.e., if one 5133 ;; absolutely necessary, i.e., if one
5134 ;; of :fmt :efmt :hmft has a "plist type" value. 5134 ;; of :fmt :efmt :hfmt has a "plist type" value.
5135 ,(and (cl-some (lambda (v) (integerp (car-safe v))) 5135 ,(and (cl-some (lambda (v) (integerp (car-safe v)))
5136 (list efmt hfmt fmt)) 5136 (list efmt hfmt fmt))
5137 '(1+ (cdr (org-export-table-cell-address cell info)))))) 5137 '(1+ (cdr (org-export-table-cell-address cell info))))))
diff --git a/lisp/progmodes/sh-script.el b/lisp/progmodes/sh-script.el
index 14598bcafb9..2a867bb3655 100644
--- a/lisp/progmodes/sh-script.el
+++ b/lisp/progmodes/sh-script.el
@@ -3592,7 +3592,7 @@ so that `occur-next' and `occur-prev' will work."
3592 3592
3593If `sh-use-smie' is non-nil, call `smie-config-guess'. 3593If `sh-use-smie' is non-nil, call `smie-config-guess'.
3594Otherwise, run the sh-script specific indent learning command, as 3594Otherwise, run the sh-script specific indent learning command, as
3595decribed below. 3595described below.
3596 3596
3597Output in buffer \"*indent*\" shows any lines which have conflicting 3597Output in buffer \"*indent*\" shows any lines which have conflicting
3598values of a variable, and the final value of all variables learned. 3598values of a variable, and the final value of all variables learned.
diff --git a/test/lisp/net/tramp-tests.el b/test/lisp/net/tramp-tests.el
index bfdc3017804..d430caec8aa 100644
--- a/test/lisp/net/tramp-tests.el
+++ b/test/lisp/net/tramp-tests.el
@@ -2720,7 +2720,7 @@ This tests also `make-symbolic-link', `file-truename' and `add-name-to-file'."
2720 (file-symlink-p tmp-name5))) 2720 (file-symlink-p tmp-name5)))
2721 ;; `smbclient' does not show symlinks in directories, so 2721 ;; `smbclient' does not show symlinks in directories, so
2722 ;; we cannot delete a non-empty directory. We delete the 2722 ;; we cannot delete a non-empty directory. We delete the
2723 ;; file explicitely. 2723 ;; file explicitly.
2724 (delete-file tmp-name5)) 2724 (delete-file tmp-name5))
2725 2725
2726 ;; Cleanup. 2726 ;; Cleanup.