aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2022-11-20 10:25:59 +0100
committerJuanma Barranquero2022-11-20 10:25:59 +0100
commit0fcf8dca6ac736f48c57bf981e06767b52ebf38c (patch)
tree2c097ae132f97530e78bec4d0a0c1f0ff9d3f6ef
parent1682bd18f50ed2095b2162207603c6b8a3f0225f (diff)
downloademacs-0fcf8dca6ac736f48c57bf981e06767b52ebf38c.tar.gz
emacs-0fcf8dca6ac736f48c57bf981e06767b52ebf38c.zip
; Fix typos
* doc/lispref/display.texi (Size of Displayed Text): * lisp/net/trampver.el (tramp-inside-emacs): Fix typos in docstrings.
-rw-r--r--doc/lispref/display.texi2
-rw-r--r--lisp/net/trampver.el2
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/lispref/display.texi b/doc/lispref/display.texi
index c75107fb588..10a1a18dd1c 100644
--- a/doc/lispref/display.texi
+++ b/doc/lispref/display.texi
@@ -2273,7 +2273,7 @@ complex text shaping requires that for some scripts. When that
2273happens, characters no longer map in a simple way to display columns, 2273happens, characters no longer map in a simple way to display columns,
2274and display layout decisions with such strings, such as truncating too 2274and display layout decisions with such strings, such as truncating too
2275wide strings, can be a complex job. This function helps in performing 2275wide strings, can be a complex job. This function helps in performing
2276suvh jobs: it splits up its argument @var{string} into a list of 2276such jobs: it splits up its argument @var{string} into a list of
2277substrings, where each substring produces a single grapheme cluster 2277substrings, where each substring produces a single grapheme cluster
2278that should be displayed as a unit. Lisp programs can then use this 2278that should be displayed as a unit. Lisp programs can then use this
2279list to construct visually-valid substrings of @var{string} which will 2279list to construct visually-valid substrings of @var{string} which will
diff --git a/lisp/net/trampver.el b/lisp/net/trampver.el
index 2b39add20d9..caf6750c26d 100644
--- a/lisp/net/trampver.el
+++ b/lisp/net/trampver.el
@@ -83,7 +83,7 @@
83 (unless (string-equal "ok" x) (error "%s" x))) 83 (unless (string-equal "ok" x) (error "%s" x)))
84 84
85(defun tramp-inside-emacs () 85(defun tramp-inside-emacs ()
86 "Version string provided by INSIDE_EMACS enmvironment variable." 86 "Version string provided by INSIDE_EMACS environment variable."
87 (concat (or (getenv "INSIDE_EMACS") emacs-version) 87 (concat (or (getenv "INSIDE_EMACS") emacs-version)
88 ",tramp:" tramp-version)) 88 ",tramp:" tramp-version))
89 89