Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
9b9a4122
Commit
9b9a4122
authored
Feb 05, 2008
by
Juanma Barranquero
Browse files
*** empty log message ***
parent
a7d51a21
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
lisp/emacs-lisp/byte-run.el
lisp/emacs-lisp/byte-run.el
+1
-1
lisp/ffap.el
lisp/ffap.el
+1
-1
lisp/follow.el
lisp/follow.el
+1
-1
lisp/isearch.el
lisp/isearch.el
+1
-1
No files found.
lisp/emacs-lisp/byte-run.el
View file @
9b9a4122
...
...
@@ -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:
...
...
lisp/ffap.el
View file @
9b9a4122
...
...
@@ -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
)
; I
llegal
chars (?)
(
if
(
or
(
string-match
"[^-[:alnum:].]"
host
)
; I
nvalid
chars (?)
(
not
(
string-match
"[^0-9]"
host
)))
; 1: a number? 2: quick reject
nil
(
let*
((
domain
...
...
lisp/follow.el
View file @
9b9a4122
...
...
@@ -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!
...
...
lisp/isearch.el
View file @
9b9a4122
...
...
@@ -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))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment