mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-27 07:37:33 +00:00
; Spelling fixes
This commit is contained in:
parent
d8fac734e5
commit
acae275b27
@ -15098,7 +15098,7 @@
|
||||
* lisp/files.el: Don't allow customization of dir-locals sorting.
|
||||
In retrospect, this is not a good idea for the same reason that
|
||||
`dir-locals-file' is a defconst, because it is important that this
|
||||
behaviour be "uniform across different environments and users".
|
||||
behavior be "uniform across different environments and users".
|
||||
Sure, the user can still change the sorting with a hack, but we
|
||||
shouldn't encourage them to change it.
|
||||
(dir-locals--all-files): Return list in the order returned by
|
||||
|
@ -5331,7 +5331,7 @@
|
||||
|
||||
2010-07-09 Michael Albinus <michael.albinus@gmx.de>
|
||||
|
||||
* dbus.texi (Top): Introduce Index. Emphasize "nil" whereever
|
||||
* dbus.texi (Top): Introduce Index. Emphasize "nil" wherever
|
||||
forgotten.
|
||||
(Type Conversion): Precise conversion of natural numbers.
|
||||
(Errors and Events): Add "debugging" to concept index. Add variable
|
||||
|
2
etc/TODO
2
etc/TODO
@ -38,7 +38,7 @@ stay within exec_byte_code.
|
||||
** Add new 'switch' byte-code
|
||||
This byte-code would take one argument from the stack (the object to test)
|
||||
and one argument from the constant-pool (a switch table, implemented as an
|
||||
eq-hashtable) and would jump to the "label" contained in the hashtable.
|
||||
'eq' hash table) and would jump to the "label" contained in the hash table.
|
||||
|
||||
Then add a 'case' special-form that can be compiled to this byte-code.
|
||||
This would behave just like cl-case, but instead of expanding to cond+eq it
|
||||
|
@ -497,7 +497,7 @@ Argument NUM is the number of EOL marks to move."
|
||||
;;; of line, etc.) it takes a bit of special handling.
|
||||
;;;
|
||||
;;; The variable edt-word-entities contains a list of characters which
|
||||
;;; are to be viewed as distinct words where ever they appear in the
|
||||
;;; are to be viewed as distinct words wherever they appear in the
|
||||
;;; buffer. This emulates the EDT line mode command SET ENTITY WORD.
|
||||
|
||||
|
||||
|
@ -562,7 +562,7 @@ The symbol property `isearch-message-prefix' put on this function
|
||||
specifies the prefix string displayed in the search message.
|
||||
|
||||
This variable is set and changed during isearch. To change the
|
||||
default behaviour used for searches, see `search-default-mode'
|
||||
default behavior used for searches, see `search-default-mode'
|
||||
instead.")
|
||||
;; We still support setting this to t for backwards compatibility.
|
||||
(define-obsolete-variable-alias 'isearch-word
|
||||
|
@ -39,7 +39,7 @@
|
||||
(eval-and-compile
|
||||
|
||||
(defun indian-regexp-of-hashtbl-keys (hashtbl)
|
||||
"Returns the regular expression of hashtable keys."
|
||||
"Return the regular expression of hash table keys."
|
||||
(let (keys)
|
||||
(maphash (lambda (key val) (push key keys)) hashtbl)
|
||||
(regexp-opt keys)))
|
||||
|
@ -903,7 +903,7 @@ KEY is a string or vector representing a sequence of keystrokes."
|
||||
|
||||
(defun substitute-key-definition (olddef newdef keymap &optional oldmap prefix)
|
||||
"Replace OLDDEF with NEWDEF for any keys in KEYMAP now defined as OLDDEF.
|
||||
In other words, OLDDEF is replaced with NEWDEF where ever it appears.
|
||||
In other words, OLDDEF is replaced with NEWDEF wherever it appears.
|
||||
Alternatively, if optional fourth argument OLDMAP is specified, we redefine
|
||||
in KEYMAP as NEWDEF those keys which are defined as OLDDEF in OLDMAP.
|
||||
|
||||
|
@ -50,7 +50,7 @@ See the end of the file for license conditions.
|
||||
page.
|
||||
|
||||
Emacs is completely portable. You can create your own shortcut to
|
||||
runemacs.exe and place this where ever you find it convienient, or
|
||||
runemacs.exe and place this wherever you find it convenient, or
|
||||
run it from a USB or network drive without copying or installing
|
||||
anything on the machine itself.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user