mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-25 07:28:20 +00:00
*** empty log message ***
This commit is contained in:
parent
a7d51a21fb
commit
9b9a412286
@ -227,7 +227,7 @@ In interpreted code, this is entirely equivalent to `progn'."
|
||||
;; verbose t, nil byte-compile-verbose
|
||||
;; optimize t, nil, source, byte byte-compile-optimize
|
||||
;; warnings list of warnings byte-compile-warnings
|
||||
;; Legal elements: (callargs redefine free-vars unresolved)
|
||||
;; Valid elements: (callargs redefine free-vars unresolved)
|
||||
;; file-format emacs18, emacs19 byte-compile-compatibility
|
||||
;;
|
||||
;; For example, this might appear at the top of a source file:
|
||||
|
@ -426,7 +426,7 @@ Returned values:
|
||||
;; (ffap-machine-p "mathcs" 5678 nil 'ping)
|
||||
;; (ffap-machine-p "foo.bonk" nil nil 'ping)
|
||||
;; (ffap-machine-p "foo.bonk.com" nil nil 'ping)
|
||||
(if (or (string-match "[^-[:alnum:].]" host) ; Illegal chars (?)
|
||||
(if (or (string-match "[^-[:alnum:].]" host) ; Invalid chars (?)
|
||||
(not (string-match "[^0-9]" host))) ; 1: a number? 2: quick reject
|
||||
nil
|
||||
(let* ((domain
|
||||
|
@ -300,7 +300,7 @@
|
||||
;; above for an example of how to bind the keys the way you like.
|
||||
;;
|
||||
;; Please note that the keymap is defined the first time this file is
|
||||
;; loaded. Also note that the only legal way to manipulate the
|
||||
;; loaded. Also note that the only valid way to manipulate the
|
||||
;; keymap is to use `define-key'. Don't change it using `setq' or
|
||||
;; similar!
|
||||
|
||||
|
@ -1461,7 +1461,7 @@ to the barrier."
|
||||
;; removes all bracket-sets and groups that might be in the way, as
|
||||
;; well as partial \{\} constructs that the code below leaves behind.
|
||||
;; Also skip over postfix operators -- though horrid,
|
||||
;; 'ab?\{5,6\}+\{1,2\}*' is perfectly legal.
|
||||
;; 'ab?\{5,6\}+\{1,2\}*' is perfectly valid.
|
||||
(while (and previous
|
||||
(or (isearch-error-state frame)
|
||||
(let* ((string (isearch-string-state frame))
|
||||
|
Loading…
Reference in New Issue
Block a user