diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2014-03-21 02:12:57 +0100 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2014-03-21 02:12:57 +0100 |
commit | dada060d9f65ce57fca99bef6e5a69ee88e126cf (patch) | |
tree | dc7777479a3e08d9cf4c2de5941c8882aa2b9e4e /lisp/align.el | |
parent | 1271626ab5d345cdfcd9aca1c528f6ed6152ef96 (diff) | |
download | emacs-dada060d9f65ce57fca99bef6e5a69ee88e126cf.tar.gz |
lisp/*.el: Fix typos.
* lisp/align.el (align-regexp): Remove superfluous backslash.
* lisp/ffap.el (ffap-ftp-default-user, ffap-url-regexp)
(ffap-pass-wildcards-to-dired, dired-at-point-require-prefix)
(ffap-rfc-path, ffap-ftp-sans-slash-regexp, ffap-menu-regexp):
Fix docstring typos.
(ffap-next): Use C-u in docstring.
(ffap-machine-p, ffap-list-env, ffap-alist, ffap-alist)
(ffap-string-at-point-mode-alist, ffap-menu, ffap-menu-ask):
Remove superfluous backslashes.
(ffap-string-at-point): Reflow docstring.
* lisp/server.el (server-host): Reflow docstring.
(server-unload-function): Fix docstring typo.
(server-eval-at): Remove superfluous backslash.
* lisp/skeleton.el (skeleton-insert): Remove superfluous backslash.
(skeleton-insert): Doc fix.
(skeleton-insert): Reflow docstring.
* lisp/term/tty-colors.el (tty-color-alist, tty-modify-color-alist)
(tty-color-approximate, tty-color-by-index, tty-color-values)
(tty-color-desc): Remove superfluous backslashes.
Diffstat (limited to 'lisp/align.el')
-rw-r--r-- | lisp/align.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/align.el b/lisp/align.el index 1efc6e6505b..9038adf624c 100644 --- a/lisp/align.el +++ b/lisp/align.el @@ -937,7 +937,7 @@ throughout the line. See `align-rules-list' for more information about these options. The non-interactive form of the previous example would look something like: - \(align-regexp (point-min) (point-max) \"\\\\(\\\\s-*\\\\)(\") + (align-regexp (point-min) (point-max) \"\\\\(\\\\s-*\\\\)(\") This function is a nothing more than a small wrapper that helps you construct a rule to pass to `align-region', which does the real work." |