mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-02-04 20:27:45 +00:00
; Fix typos
This commit is contained in:
parent
cf30432a14
commit
3d7d8ddc5a
@ -2704,7 +2704,7 @@ Return the timestamp in @var{position}. This is the time at which the
|
||||
event occurred, in milliseconds. Such a timestamp is reported
|
||||
relative to an arbitrary starting time that varies according to the
|
||||
window system in use. On the X Window System, for example, it is the
|
||||
number of miliseconds since the X server was started.
|
||||
number of milliseconds since the X server was started.
|
||||
@end defun
|
||||
|
||||
These functions compute a position list given particular buffer
|
||||
|
@ -1253,7 +1253,7 @@ accepts is as follows (order is not significant):
|
||||
|
||||
The ~popup~ key takes the same values as ~selection~.
|
||||
|
||||
Apart from specfying each key separately, a fallback list is accepted.
|
||||
Apart from specifying each key separately, a fallback list is accepted.
|
||||
This is only useful when the desired aesthetic is the same across all
|
||||
keys that are not explicitly referenced. For example, this:
|
||||
|
||||
@ -3639,7 +3639,7 @@ it if you plan to control face attributes.
|
||||
:end:
|
||||
#+cindex: Org custom emphasis faces
|
||||
|
||||
Org provides the user option ~org-emphasis-alist~ which assosiates a
|
||||
Org provides the user option ~org-emphasis-alist~ which associates a
|
||||
character with a face, list of faces, or face attributes. The default
|
||||
specification of that variable looks like this:
|
||||
|
||||
|
@ -2270,7 +2270,7 @@ follows (order is not significant):
|
||||
|
||||
The `popup' key takes the same values as `selection'.
|
||||
|
||||
Apart from specfying each key separately, a fallback list is
|
||||
Apart from specifying each key separately, a fallback list is
|
||||
accepted. This is only useful when the desired aesthetic is the
|
||||
same across all keys that are not explicitly referenced. For
|
||||
example, this:
|
||||
|
@ -14359,7 +14359,7 @@
|
||||
* ldefs-boot.el: Likewise.
|
||||
|
||||
* textmodes/bibtex.el (bibtex-validate-globally): Fix typo in a
|
||||
message text: "Duplicat" => "Duplicate".
|
||||
message text.
|
||||
|
||||
2006-01-06 Sven Joachim <svenjoac@gmx.de> (tiny change)
|
||||
|
||||
|
@ -209,7 +209,7 @@ SUPPRESS-LIST is the list of kinds of warnings to suppress."
|
||||
(text " stop "))
|
||||
"Suppress warnings."
|
||||
:version "29.1"
|
||||
:help-echo "Click to supress this warning type")
|
||||
:help-echo "Click to suppress this warning type")
|
||||
|
||||
(defun warnings-suppress (type)
|
||||
(pcase (car
|
||||
|
@ -799,7 +799,7 @@ the C sources, too."
|
||||
;; different purposes, such as function name, var name, face name,
|
||||
;; property name, ...).
|
||||
(concat
|
||||
;; The main "canonical" occurence of symbols is within '...'.
|
||||
;; The main "canonical" occurrence of symbols is within '...'.
|
||||
"'" quoted "'"
|
||||
;; Commands can also occur as `M-x blabla'.
|
||||
"\\|M-x[ \t\n]+" quoted "\\_>"
|
||||
|
@ -1480,7 +1480,7 @@ instead of returning \"E\".")
|
||||
(error '(STRING . "E")))))))
|
||||
|
||||
(defun x-dnd-handle-octet-stream (_selection _type _value)
|
||||
"Handle a selecton request for `application/octet-stream'.
|
||||
"Handle a selection request for `application/octet-stream'.
|
||||
Return the contents of the XDS file."
|
||||
(cons 'application/octet-stream
|
||||
(ignore-errors
|
||||
|
@ -6837,7 +6837,7 @@ x_sync_trigger_fence (struct frame *f, XSyncValue value)
|
||||
idx = (n / 4) % 2;
|
||||
|
||||
#ifdef FRAME_DEBUG
|
||||
fprintf (stderr, "Triggering synchonization fence: %lu\n", idx);
|
||||
fprintf (stderr, "Triggering synchronization fence: %lu\n", idx);
|
||||
#endif
|
||||
|
||||
XSyncTriggerFence (FRAME_X_DISPLAY (f),
|
||||
@ -18928,7 +18928,7 @@ handle_one_xevent (struct x_display_info *dpyinfo,
|
||||
{
|
||||
/* Now clear dpyinfo->last_mouse_motion_frame, or
|
||||
gui_redo_mouse_highlight will end up highlighting the
|
||||
last known poisition of the mouse if a tooltip frame is
|
||||
last known position of the mouse if a tooltip frame is
|
||||
later unmapped. */
|
||||
|
||||
if (f == dpyinfo->last_mouse_motion_frame)
|
||||
@ -20397,7 +20397,7 @@ handle_one_xevent (struct x_display_info *dpyinfo,
|
||||
{
|
||||
/* Now clear dpyinfo->last_mouse_motion_frame, or
|
||||
gui_redo_mouse_highlight will end up highlighting
|
||||
the last known poisition of the mouse if a
|
||||
the last known position of the mouse if a
|
||||
tooltip frame is later unmapped. */
|
||||
|
||||
if (f == dpyinfo->last_mouse_motion_frame)
|
||||
|
@ -142,10 +142,10 @@ Dialog resource directories are located by expanding the variable
|
||||
(declare (indent 1))
|
||||
|
||||
(let* ((orig-autojoin-mode (make-symbol "orig-autojoin-mode"))
|
||||
(combind `((,orig-autojoin-mode (bound-and-true-p erc-autojoin-mode))
|
||||
(combined `((,orig-autojoin-mode (bound-and-true-p erc-autojoin-mode))
|
||||
,@(erc-scenarios-common--make-bindings bindings))))
|
||||
|
||||
`(erc-d-t-with-cleanup (,@combind)
|
||||
`(erc-d-t-with-cleanup (,@combined)
|
||||
|
||||
(ert-info ("Restore autojoin, etc., kill ERC buffers")
|
||||
(dolist (buf (buffer-list))
|
||||
|
@ -2481,7 +2481,7 @@ This checks also `file-name-as-directory', `file-name-directory',
|
||||
(insert-file-contents tmp-name)
|
||||
(should (string-equal (buffer-string) "foo")))
|
||||
|
||||
;; Write empty string. Used for creation of temprorary files.
|
||||
;; Write empty string. Used for creation of temporary files.
|
||||
;; Since Emacs 27.1.
|
||||
(when (fboundp 'make-empty-file)
|
||||
(with-no-warnings
|
||||
|
Loading…
x
Reference in New Issue
Block a user