diff options
| author | Paul Eggert | 2015-06-30 19:45:56 -0700 |
|---|---|---|
| committer | Paul Eggert | 2015-06-30 19:47:29 -0700 |
| commit | cc7acdbd0e88d94d3e63d230c17894bb7bd74091 (patch) | |
| tree | 3256dba8c661e87ea4b6f002275db5b2f925ae89 | |
| parent | 5f004117f5bcab9171eaddb2867393ed69ae49bf (diff) | |
| download | emacs-cc7acdbd0e88d94d3e63d230c17894bb7bd74091.tar.gz emacs-cc7acdbd0e88d94d3e63d230c17894bb7bd74091.zip | |
Spelling fixes
| -rw-r--r-- | etc/NEWS | 2 | ||||
| -rw-r--r-- | lisp/character-fold.el | 6 | ||||
| -rw-r--r-- | lisp/emacs-lisp/package.el | 2 | ||||
| -rw-r--r-- | src/ChangeLog.12 | 2 |
4 files changed, 6 insertions, 6 deletions
| @@ -87,7 +87,7 @@ command line when `initial-buffer-choice' is non-nil. | |||
| 87 | ** `isearch' and `query-replace' now perform character folding in matches. | 87 | ** `isearch' and `query-replace' now perform character folding in matches. |
| 88 | This is analogous to case-folding, but applies between Unicode | 88 | This is analogous to case-folding, but applies between Unicode |
| 89 | characters and their ASCII counterparts. This means many characters | 89 | characters and their ASCII counterparts. This means many characters |
| 90 | will match entire groups of charactes. | 90 | will match entire groups of characters. |
| 91 | 91 | ||
| 92 | For instance, the " will match all variants of unicode double quotes | 92 | For instance, the " will match all variants of unicode double quotes |
| 93 | (like “ and ”), and the letter a will match all of its accented | 93 | (like “ and ”), and the letter a will match all of its accented |
diff --git a/lisp/character-fold.el b/lisp/character-fold.el index 1675e6e2459..fca13bf96c1 100644 --- a/lisp/character-fold.el +++ b/lisp/character-fold.el | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | ;;; character-fold.el --- matching unicode characters to their ascii similars -*- lexical-binding: t; -*- | 1 | ;;; character-fold.el --- match unicode to similar ASCII -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2015 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2015 Free Software Foundation, Inc. |
| 4 | 4 | ||
| @@ -26,7 +26,7 @@ | |||
| 26 | ;;;###autoload | 26 | ;;;###autoload |
| 27 | (defvar character-fold-search t | 27 | (defvar character-fold-search t |
| 28 | "Non-nil if searches should fold similar characters. | 28 | "Non-nil if searches should fold similar characters. |
| 29 | This means some characters will match entire groups of charactes. | 29 | This means some characters will match entire groups of characters. |
| 30 | For instance, \" will match all variants of double quotes, and | 30 | For instance, \" will match all variants of double quotes, and |
| 31 | the letter a will match all of its accented versions (and then | 31 | the letter a will match all of its accented versions (and then |
| 32 | some).") | 32 | some).") |
| @@ -49,7 +49,7 @@ some).") | |||
| 49 | ;; Discard a possible formatting tag. | 49 | ;; Discard a possible formatting tag. |
| 50 | (when (symbolp (car dec)) | 50 | (when (symbolp (car dec)) |
| 51 | (setq dec (cdr dec))) | 51 | (setq dec (cdr dec))) |
| 52 | ;; Skip trivial cases lika ?a decomposing to (?a). | 52 | ;; Skip trivial cases like ?a decomposing to (?a). |
| 53 | (unless (or (and (eq i (car dec)) | 53 | (unless (or (and (eq i (car dec)) |
| 54 | (not (cdr dec)))) | 54 | (not (cdr dec)))) |
| 55 | (let ((d dec) k found multiletter) | 55 | (let ((d dec) k found multiletter) |
diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el index 7894aafe20d..35473334baf 100644 --- a/lisp/emacs-lisp/package.el +++ b/lisp/emacs-lisp/package.el | |||
| @@ -2614,7 +2614,7 @@ to their archives." | |||
| 2614 | (defcustom package-hidden-regexps nil | 2614 | (defcustom package-hidden-regexps nil |
| 2615 | "List of regexps matching the name of packages to hide. | 2615 | "List of regexps matching the name of packages to hide. |
| 2616 | If the name of a package matches any of these regexps it is | 2616 | If the name of a package matches any of these regexps it is |
| 2617 | omited from the package menu. To toggle this, type \\[package-menu-toggle-hiding]. | 2617 | omitted from the package menu. To toggle this, type \\[package-menu-toggle-hiding]. |
| 2618 | 2618 | ||
| 2619 | Values can be interactively added to this list by typing | 2619 | Values can be interactively added to this list by typing |
| 2620 | \\[package-menu-hide-package] on a package" | 2620 | \\[package-menu-hide-package] on a package" |
diff --git a/src/ChangeLog.12 b/src/ChangeLog.12 index 78b903e9d0e..f29b175fb37 100644 --- a/src/ChangeLog.12 +++ b/src/ChangeLog.12 | |||
| @@ -5623,7 +5623,7 @@ | |||
| 5623 | 2012-09-17 Kenichi Handa <handa@gnu.org> | 5623 | 2012-09-17 Kenichi Handa <handa@gnu.org> |
| 5624 | 5624 | ||
| 5625 | * font.c (Ffont_shape_gstring): Fix previous change; GLYPHs may | 5625 | * font.c (Ffont_shape_gstring): Fix previous change; GLYPHs may |
| 5626 | not covert the last few charactes. | 5626 | not convert the last few characters. |
| 5627 | 5627 | ||
| 5628 | 2012-09-16 Kenichi Handa <handa@gnu.org> | 5628 | 2012-09-16 Kenichi Handa <handa@gnu.org> |
| 5629 | 5629 | ||