aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Kangas2022-05-15 11:05:36 +0200
committerStefan Kangas2022-05-15 11:05:36 +0200
commit5dbaddc729519b399e31eae13a8f71d8caaade34 (patch)
treeeff431a10d822edcc50f78f532ca16fba73bc086
parent950dab21e3408788cb2443e2f2c6518a32adfd15 (diff)
downloademacs-5dbaddc729519b399e31eae13a8f71d8caaade34.tar.gz
emacs-5dbaddc729519b399e31eae13a8f71d8caaade34.zip
; Fix some typos
-rw-r--r--ChangeLog.32
-rw-r--r--doc/misc/transient.texi2
-rw-r--r--src/emacs.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/ChangeLog.3 b/ChangeLog.3
index 52c6300f1f9..ecd966fb691 100644
--- a/ChangeLog.3
+++ b/ChangeLog.3
@@ -1293,7 +1293,7 @@
1293 1293
1294 Don't bug out on certain empty elements with ids 1294 Don't bug out on certain empty elements with ids
1295 1295
1296 * lisp/net/shr.el (shr-descend): Fix empty-element #id targetting 1296 * lisp/net/shr.el (shr-descend): Fix empty-element #id targeting
1297 (bug#52391). 1297 (bug#52391).
1298 1298
12992021-12-09 Paul Eggert <eggert@cs.ucla.edu> 12992021-12-09 Paul Eggert <eggert@cs.ucla.edu>
diff --git a/doc/misc/transient.texi b/doc/misc/transient.texi
index 191fe8cd853..d634ad5197a 100644
--- a/doc/misc/transient.texi
+++ b/doc/misc/transient.texi
@@ -2025,7 +2025,7 @@ They are defined here anyway to allow sharing certain methods.
2025@code{value} The value. Should not be accessed directly. 2025@code{value} The value. Should not be accessed directly.
2026 2026
2027@item 2027@item
2028@code{init-value} Function that is responsable for setting the object's 2028@code{init-value} Function that is responsible for setting the object's
2029value. If bound, then this is called with the object as the only 2029value. If bound, then this is called with the object as the only
2030argument. Usually this is not bound, in which case the object's 2030argument. Usually this is not bound, in which case the object's
2031primary @code{transient-init-value} method is called instead. 2031primary @code{transient-init-value} method is called instead.
diff --git a/src/emacs.c b/src/emacs.c
index 0f96716fb38..ccc0dd269f4 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -1365,7 +1365,7 @@ main (int argc, char **argv)
1365 related to the GUI system, like -font, -geometry, and -title, and 1365 related to the GUI system, like -font, -geometry, and -title, and
1366 then processes the rest of arguments whose priority is below 1366 then processes the rest of arguments whose priority is below
1367 those that are related to the GUI system. The arguments 1367 those that are related to the GUI system. The arguments
1368 porcessed by 'command-line' are removed from 'command-line-args'; 1368 processed by 'command-line' are removed from 'command-line-args';
1369 the arguments processed by 'command-line-1' aren't, they are only 1369 the arguments processed by 'command-line-1' aren't, they are only
1370 removed from 'command-line-args-left'. 1370 removed from 'command-line-args-left'.
1371 1371