commit 500a781bc5d3d7cc2f671a950816ba4035a9d58c (HEAD, refs/remotes/origin/master) Author: Wilson Snyder Date: Tue Mar 22 20:46:40 2016 -0400 Sync with verilog-mode development tree. * lisp/progmodes/verilog-mode.el (verilog-imenu-generic-expression, verilog-speedbar-initialize): Automatically add verilog-mode extensions when in speedbar mode, bug1045, bug1046. Reported by David Shleifman. (verilog-mode-map): Move `verilog-star-comment' from M-* to C-c/ to avoid conflict with `pop-tag-mark'. Reported by Ian Perryman. (verilog-read-always-signals-recurse): Fix :: notation for auto-reset signals. Reported by Andrew Jones. (verilog-font-lock-grouping-keywords-face): Fix highlighting of grouping keywords, bug1002. Reported by Paul Sargent. (verilog-save-font-no-change-functions): Commentary and fix pre-Emacs 21 behavior. diff --git a/lisp/progmodes/verilog-mode.el b/lisp/progmodes/verilog-mode.el index 28ae350..fd2e96a 100644 --- a/lisp/progmodes/verilog-mode.el +++ b/lisp/progmodes/verilog-mode.el @@ -123,7 +123,7 @@ ;; ;; This variable will always hold the version number of the mode -(defconst verilog-mode-version "2015-11-21-8112ca0-vpo-GNU" +(defconst verilog-mode-version "2016-03-22-7547e76-vpo-GNU" "Version of this Verilog mode.") (defconst verilog-mode-release-emacs t "If non-nil, this version of Verilog mode was released with Emacs itself.") @@ -349,6 +349,11 @@ wherever possible, since it is slow." (condition-case nil (unless (fboundp 'prog-mode) (define-derived-mode prog-mode fundamental-mode "Prog")) + (error nil)) + ;; Added in Emacs 25.1 + (condition-case nil + (unless (fboundp 'forward-word-strictly) + (defalias 'forward-word-strictly 'forward-word)) (error nil))) (eval-when-compile @@ -1321,8 +1326,13 @@ See also `verilog-case-fold'." :type 'hook) (defvar verilog-imenu-generic-expression - '((nil "^\\s-*\\(\\(m\\(odule\\|acromodule\\)\\)\\|primitive\\)\\s-+\\([a-zA-Z0-9_.:]+\\)" 4) - ("*Vars*" "^\\s-*\\(reg\\|wire\\)\\s-+\\(\\|\\[[^]]+\\]\\s-+\\)\\([A-Za-z0-9_]+\\)" 3)) + '((nil "^\\s-*\\(?:m\\(?:odule\\|acromodule\\)\\|p\\(?:rimitive\\|rogram\\|ackage\\)\\)\\s-+\\([a-zA-Z0-9_.:]+\\)" 1) + ("*Variables*" "^\\s-*\\(reg\\|wire\\|logic\\)\\s-+\\(\\|\\[[^]]+\\]\\s-+\\)\\([A-Za-z0-9_]+\\)" 3) + ("*Classes*" "^\\s-*\\(?:\\(?:virtual\\|interface\\)\\s-+\\)?class\\s-+\\([A-Za-z_][A-Za-z0-9_]+\\)" 1) + ("*Tasks*" "^\\s-*\\(?:\\(?:static\\|pure\\|virtual\\|local\\|protected\\)\\s-+\\)*task\\s-+\\(?:\\(?:static\\|automatic\\)\\s-+\\)?\\([A-Za-z_][A-Za-z0-9_:]+\\)" 1) + ("*Functions*" "^\\s-*\\(?:\\(?:static\\|pure\\|virtual\\|local\\|protected\\)\\s-+\\)*function\\s-+\\(?:\\(?:static\\|automatic\\)\\s-+\\)?\\(?:\\w+\\s-+\\)?\\([A-Za-z_][A-Za-z0-9_:]+\\)" 1) + ("*Interfaces*" "^\\s-*interface\\s-+\\([a-zA-Z_0-9]+\\)" 1) + ("*Types*" "^\\s-*typedef\\s-+.*\\s-+\\([a-zA-Z_0-9]+\\)\\s-*;" 1)) "Imenu expression for Verilog mode. See `imenu-generic-expression'.") ;; @@ -1374,7 +1384,7 @@ If set will become buffer local.") (define-key map "\C-c\C-i" 'verilog-pretty-declarations) (define-key map "\C-c=" 'verilog-pretty-expr) (define-key map "\C-c\C-b" 'verilog-submit-bug-report) - (define-key map "\M-*" 'verilog-star-comment) + (define-key map "\C-c/" 'verilog-star-comment) (define-key map "\C-c\C-c" 'verilog-comment-region) (define-key map "\C-c\C-u" 'verilog-uncomment-region) (when (featurep 'xemacs) @@ -3026,7 +3036,7 @@ See also `verilog-font-lock-extra-types'.") "Font lock mode face used to highlight AMS keywords." :group 'font-lock-highlighting-faces) -(defvar verilog-font-grouping-keywords-face +(defvar verilog-font-lock-grouping-keywords-face 'verilog-font-lock-grouping-keywords-face "Font to use for Verilog Grouping Keywords (such as begin..end).") (defface verilog-font-lock-grouping-keywords-face @@ -3870,6 +3880,25 @@ Key bindings specific to `verilog-mode-map' are: (add-hook 'write-contents-hooks 'verilog-auto-save-check nil 'local) ;; verilog-mode-hook call added by define-derived-mode ) + +;;; Integration with the speedbar +;; + +(declare-function speedbar-add-supported-extension "speedbar" (extension)) + +(defun verilog-speedbar-initialize () + "Initialize speedbar to understand `verilog-mode'." + ;; Set Verilog file extensions (extracted from `auto-mode-alist') + (let ((mode-alist auto-mode-alist)) + (while mode-alist + (when (eq (cdar mode-alist) 'verilog-mode) + (speedbar-add-supported-extension (caar mode-alist))) + (setq mode-alist (cdr mode-alist))))) + +;; If the speedbar is loaded, execute initialization instructions right away, +;; otherwise add the initialization instructions to the speedbar loader. +(eval-after-load "speedbar" '(verilog-speedbar-initialize)) + ;;; Electric functions: ;; @@ -9016,7 +9045,8 @@ IGNORE-NEXT is true to ignore next token, fake from inside case statement." ;;(if dbg (setq dbg (concat dbg (format "\tif-check-else-other %s\n" keywd)))) (setq gotend t)) ;; Final statement? - ((and exit-keywd (equal keywd exit-keywd)) + ((and exit-keywd (and (equal keywd exit-keywd) + (not (looking-at "::")))) (setq gotend t) (forward-char (length keywd))) ;; Standard tokens... @@ -9032,7 +9062,9 @@ IGNORE-NEXT is true to ignore next token, fake from inside case statement." (goto-char (match-end 0)) (forward-char 1))) ((equal keywd ":") ; Case statement, begin/end label, x?y:z - (cond ((equal "endcase" exit-keywd) ; case x: y=z; statement next + (cond ((looking-at "::") + (forward-char 1)) ; Another forward-char below + ((equal "endcase" exit-keywd) ; case x: y=z; statement next (setq ignore-next nil rvalue nil)) ((equal "?" exit-keywd) ; x?y:z rvalue ) ; NOP @@ -9127,7 +9159,7 @@ IGNORE-NEXT is true to ignore next token, fake from inside case statement." (verilog-read-always-signals-recurse nil nil nil) (setq sigs-out-i (append sigs-out-i sigs-out-unk) sigs-out-unk nil) - ;;(if dbg (with-current-buffer (get-buffer-create "*vl-dbg*")) (delete-region (point-min) (point-max)) (insert dbg) (setq dbg "")) + ;;(if dbg (with-current-buffer (get-buffer-create "*vl-dbg*") (delete-region (point-min) (point-max)) (insert dbg) (setq dbg ""))) ;; Return what was found (verilog-alw-new sigs-out-d sigs-out-i sigs-temp sigs-in)))) commit ddd9111a90f59abedd5065bfb7ac53454f816780 Author: Paul Eggert Date: Tue Mar 22 16:42:28 2016 -0700 Compute a better commit message for merges Problem reported by David Engster in: http://lists.gnu.org/archive/html/emacs-devel/2016-03/msg01270.html * admin/gitmerge.el (gitmerge-commit-message): Truncate the computed commit message to at most 72 characters per line. (gitmerge-maybe-resume): Don’t use "-" as the commit message for merges; use the computed commit message instead. diff --git a/admin/gitmerge.el b/admin/gitmerge.el index 74e6f80..6a52f7a 100644 --- a/admin/gitmerge.el +++ b/admin/gitmerge.el @@ -331,6 +331,10 @@ is nil, only the single commit BEG is merged." (if end (list (concat beg "~.." end)) `("-1" ,beg))) (insert "\n") + ;; Truncate to 72 chars so that the resulting ChangeLog line fits in 80. + (goto-char (point-min)) + (while (re-search-forward "^\\(.\\{69\\}\\).\\{4,\\}" nil t) + (replace-match "\\1...")) (buffer-string))) (defun gitmerge-apply (missing from) @@ -432,14 +436,8 @@ If so, add no longer conflicted files and commit." (when mergehead (with-current-buffer (get-buffer-create gitmerge-output-buffer) (erase-buffer) - ;; FIXME: We add "-m-" because the default commit message - ;; apparently tickles our commit hook: - ;; Line longer than 78 characters in commit message - ;; Line longer than 78 characters in commit message - ;; Line longer than 78 characters in commit message - ;; Commit aborted; please see the file CONTRIBUTE (unless (zerop (call-process "git" nil t nil - "commit" "--no-edit" "-m-")) + "commit" "--no-edit")) (error "Git error during merge - fix it manually")))) ;; Successfully resumed. t)))) commit 4fab26ba5ac381ce836eff521fc56d8d28570221 Author: Paul Eggert Date: Tue Mar 22 15:46:30 2016 -0700 * admin/gitmerge.el (gitmerge-skip-regexp): Add "no need to merge". diff --git a/admin/gitmerge.el b/admin/gitmerge.el index a07f57a..74e6f80 100644 --- a/admin/gitmerge.el +++ b/admin/gitmerge.el @@ -50,7 +50,7 @@ (defvar gitmerge-skip-regexp ;; We used to include "sync" in there, but in my experience it only ;; caused false positives. --Stef - "back[- ]?port\\|do not merge\\|re-?generate\\|bump version\\|from trunk\\|\ + "back[- ]?port\\|\\(do not\\|no need to\\) merge\\|re-?generate\\|bump version\\|from trunk\\|\ Auto-commit" "Regexp matching logs of revisions that might be skipped. `gitmerge-missing' will ask you if it should skip any matches.") commit b08237185ec044c8afff0feb88a126512b33a6d8 Author: Paul Eggert Date: Tue Mar 22 12:53:54 2016 -0700 Change do-not-merge pattern to "do not merge" This should avoid the problem we recently had with automatically-generated merge messages, while still letting people specify commits not to merge. * admin/gitmerge.el (gitmerge-skip-regexp): Add "do not merge". (gitmerge-highlight-skip-regexp): Fold case when searching for gitmerge-skip-regexp. diff --git a/admin/gitmerge.el b/admin/gitmerge.el index ed87643..a07f57a 100644 --- a/admin/gitmerge.el +++ b/admin/gitmerge.el @@ -50,7 +50,7 @@ (defvar gitmerge-skip-regexp ;; We used to include "sync" in there, but in my experience it only ;; caused false positives. --Stef - "back[- ]?port\\|re-?generate\\|bump version\\|from trunk\\|\ + "back[- ]?port\\|do not merge\\|re-?generate\\|bump version\\|from trunk\\|\ Auto-commit" "Regexp matching logs of revisions that might be skipped. `gitmerge-missing' will ask you if it should skip any matches.") @@ -171,9 +171,10 @@ Auto-commit" (defun gitmerge-highlight-skip-regexp () "Highlight strings that match `gitmerge-skip-regexp'." (save-excursion - (while (re-search-forward gitmerge-skip-regexp nil t) - (put-text-property (match-beginning 0) (match-end 0) - 'face 'font-lock-warning-face)))) + (let ((case-fold-search t)) + (while (re-search-forward gitmerge-skip-regexp nil t) + (put-text-property (match-beginning 0) (match-end 0) + 'face 'font-lock-warning-face))))) (defun gitmerge-missing (from) "Return the list of revisions that need to be merged from FROM. commit 582962a3a184135047c5809b1172691a1c5f2586 Author: Michael Albinus Date: Tue Mar 22 20:37:02 2016 +0100 ; Remove unwanted merge from emacs-25 diff --git a/test/lisp/net/tramp-tests.el b/test/lisp/net/tramp-tests.el index d9563ec..a29e42e 100644 --- a/test/lisp/net/tramp-tests.el +++ b/test/lisp/net/tramp-tests.el @@ -1785,14 +1785,6 @@ Several special characters do not work properly there." (file-truename tramp-test-temporary-file-directory) nil (string-match "^HP-UX" (tramp-get-connection-property v "uname" "")))) -(defun tramp--test-darwin-p () - "Check, whether the remote host runs Mac OS X. -Several special characters do not work properly there." - ;; We must refill the cache. `file-truename' does it. - (with-parsed-tramp-file-name - (file-truename tramp-test-temporary-file-directory) nil - (string-match "^Darwin" (tramp-get-connection-property v "uname" "")))) - (defun tramp--test-check-files (&rest files) "Run a simple but comprehensive test over every file in FILES." ;; We must use `file-truename' for the temporary directory, because @@ -2046,10 +2038,9 @@ Use the `ls' command." (file-name-coding-system 'utf-8)) (tramp--test-check-files (unless (tramp--test-hpux-p) "Γυρίστε το Γαλαξία με Ώτο Στοπ") - (unless (or (tramp--test-hpux-p) (tramp--test-darwin-p)) + (unless (tramp--test-hpux-p) "أصبح بوسعك الآن تنزيل نسخة كاملة من موسوعة ويكيبيديا العربية لتصفحها بلا اتصال بالإنترنت") - (unless (tramp--test-darwin-p) - "银河系漫游指南系列") + "银河系漫游指南系列" "Автостопом по гала́ктике"))) (ert-deftest tramp-test32-utf8 () commit c4f4e643daac8438722885f6291f9fc700196faa Author: Paul Eggert Date: Tue Mar 22 11:09:47 2016 -0700 ; Fix etc/NEWS typo in recent merge. diff --git a/etc/NEWS b/etc/NEWS index 366208b..427835a 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -170,7 +170,7 @@ changed size when 'window-size-change-functions' are run. suitable for use in 'display-buffer-alist'. For example, to avoid creating a new window when opening man pages when there's already one, use (add-to-list 'display-buffer-alist - '("\\'\\*Man .*\\*\\'" . + '("\\`\\*Man .*\\*\\'" . (display-buffer-reuse-mode-window (inhibit-same-window . nil) (mode . Man-mode)))) commit d2ea891fca9d78553426f202ae6e1dd0047f693f Merge: 656058b 91e6676 Author: Paul Eggert Date: Tue Mar 22 11:04:37 2016 -0700 Merge from origin/emacs-25 91e6676 Fix an Isearch var to be a string (Bug#23038) 76ef522 Fix (args-out-of-range 1) error in cursor-sensor--detect commit 656058b790c285aa037a772f752c1446e7423ba2 Merge: f95bbe5 8a35f83 Author: Paul Eggert Date: Tue Mar 22 11:04:36 2016 -0700 ; Merge from origin/emacs-25 The following commits were skipped: 8a35f83 Render empty
    • correctly d8b2ce5 Ignore invalid base64 encoded embedded images 52ba24b Fix

      and

      newlines with or without
    • in shr commit f95bbe5a67e03fe6d05cbfb4d0c9151a754d6ccd Merge: 4869e0d b8ea08b Author: Paul Eggert Date: Tue Mar 22 11:04:36 2016 -0700 - commit 4869e0d85a215e7fb0262430a48aa4d5804bf0a4 Merge: 37b9099 9ab03f2 Author: Paul Eggert Date: Tue Mar 22 11:01:30 2016 -0700 ; Merge from origin/emacs-25 The following commit was skipped: 9ab03f2 ; Auto-commit of loaddefs files. commit 37b9099068c10383e959ee366a52a22516846163 Merge: 6bd1e220 56df617 Author: Paul Eggert Date: Tue Mar 22 11:01:30 2016 -0700 - commit 6bd1e2203486ace170f5de15cf7d66146fc8cc87 Author: Paul Eggert Date: Tue Mar 22 10:52:54 2016 -0700 Keep "merge" commits by default in gitmerge * admin/gitmerge.el (gitmerge-skip-regexp): Omit "merge", as it causes false positives. See: http://lists.gnu.org/archive/html/emacs-devel/2016-03/msg01234.html diff --git a/admin/gitmerge.el b/admin/gitmerge.el index ae863fd..ed87643 100644 --- a/admin/gitmerge.el +++ b/admin/gitmerge.el @@ -50,7 +50,7 @@ (defvar gitmerge-skip-regexp ;; We used to include "sync" in there, but in my experience it only ;; caused false positives. --Stef - "back[- ]?port\\|merge\\|re-?generate\\|bump version\\|from trunk\\|\ + "back[- ]?port\\|re-?generate\\|bump version\\|from trunk\\|\ Auto-commit" "Regexp matching logs of revisions that might be skipped. `gitmerge-missing' will ask you if it should skip any matches.") commit 91e667692ba1362ca1334b8d58fd16c305ad5e2a Author: Kaushal Modi Date: Tue Mar 22 00:28:27 2016 +0100 Fix an Isearch var to be a string (Bug#23038) * isearch.el (isearch--describe-regexp-mode): The `description' var needs to always be a string. Add the missing default case for the cond form that ensures that. Before this bug fix, for the events when `regexp-function' and `search-default-mode' both were nil, `description' also stayed nil. So when `space-before' was non-nil, the "non-string" `description' (with a value of nil) got passed as an argument to `replace-regexp-in-string' (where a string was expected). That caused the error described in Bug#23038. diff --git a/lisp/isearch.el b/lisp/isearch.el index 988503e..48354d3 100644 --- a/lisp/isearch.el +++ b/lisp/isearch.el @@ -2585,16 +2585,19 @@ the word mode." (eq search-default-mode isearch-regexp))) "") ;; 2. Use the `isearch-message-prefix' set for ;; `regexp-function' if available. - (regexp-function - (and (symbolp regexp-function) - (or (get regexp-function 'isearch-message-prefix) - ""))) + (regexp-function + (and (symbolp regexp-function) + (or (get regexp-function 'isearch-message-prefix) + ""))) ;; 3. Else if `isearch-regexp' is non-nil, set description ;; to "regexp ". - (isearch-regexp "regexp ") - ;; 4. And finally, if we're in literal mode (and if the - ;; default mode is also not literal), describe it. - ((functionp search-default-mode) "literal ")))) + (isearch-regexp "regexp ") + ;; 4. Else if we're in literal mode (and if the default + ;; mode is also not literal), describe it. + ((functionp search-default-mode) "literal ") + ;; 5. And finally, if none of the above is true, set the + ;; description to an empty string. + (t "")))) (if space-before ;; Move space from the end to the beginning. (replace-regexp-in-string "\\(.*\\) \\'" " \\1" description) commit 76ef52267cf887e3e1aa6d25b3b16dd0601dd459 Author: Leo Liu Date: Mon Mar 21 18:26:10 2016 +0800 Fix (args-out-of-range 1) error in cursor-sensor--detect * lisp/emacs-lisp/cursor-sensor.el (cursor-sensor--detect): Don't hard-code (point-min) as 1 which fails in narrowed buffers. diff --git a/lisp/emacs-lisp/cursor-sensor.el b/lisp/emacs-lisp/cursor-sensor.el index ac063d48..f1ab82e 100644 --- a/lisp/emacs-lisp/cursor-sensor.el +++ b/lisp/emacs-lisp/cursor-sensor.el @@ -113,7 +113,7 @@ ;; non-sticky on both ends, but that means get-pos-property might ;; never see it. (new (or (get-char-property point 'cursor-sensor-functions) - (unless (= point 1) + (unless (bobp) (get-char-property (1- point) 'cursor-sensor-functions)))) (old (window-parameter window 'cursor-sensor--last-state)) (oldposmark (car old)) commit 8a35f83c6c2ce602ee4d1e54c64067c851a2a43f Author: Lars Magne Ingebrigtsen Date: Sun Mar 20 13:52:36 2016 +0100 Render empty
        • correctly * lisp/net/shr.el (shr-tag-ul): Render empty
            • correctly (bug#22964). (cherry picked from commit 4f6ea3988b66cf132c67fd0cc26d12eb9a300ba1) Backport: diff --git a/lisp/net/shr.el b/lisp/net/shr.el index 07fcbeb..2c8ff79 100644 --- a/lisp/net/shr.el +++ b/lisp/net/shr.el @@ -1480,6 +1480,10 @@ The preference is a float determined from `shr-prefer-media-type'." (shr-ensure-paragraph) (let ((shr-list-mode 'ul)) (shr-generic dom)) + ;; If we end on an empty
            • , then make sure we really end on a new + ;; paragraph. + (unless (bolp) + (insert "\n")) (shr-ensure-paragraph)) (defun shr-tag-ol (dom) commit d8b2ce5f8a6a849e55b48699dfa0e769a4b9a3f6 Author: Lars Magne Ingebrigtsen Date: Sun Mar 20 13:57:11 2016 +0100 Ignore invalid base64 encoded embedded images * lisp/net/shr.el (shr-image-from-data): Ignore invalid base64 encoded embedded images (bug#22928). (cherry picked from commit f2da80d0e1ccd121c4891e869a45aeb9c6b1795d) Backport: diff --git a/lisp/net/shr.el b/lisp/net/shr.el index 900b8ec..07fcbeb 100644 --- a/lisp/net/shr.el +++ b/lisp/net/shr.el @@ -924,7 +924,8 @@ If EXTERNAL, browse the URL using `shr-external-browser'." (let ((param (match-string 4 data)) (payload (url-unhex-string (match-string 5 data)))) (when (string-match "^.*\\(;[ \t]*base64\\)$" param) - (setq payload (base64-decode-string payload))) + (setq payload (ignore-errors + (base64-decode-string payload)))) payload))) ;; Behind display-graphic-p test. commit 52ba24bdd913f6be8318c34b281c7ad727dee6ad Author: Lars Magne Ingebrigtsen Date: Sun Mar 20 13:43:42 2016 +0100 Fix

              and

              newlines with or without
            • in shr * lisp/net/shr.el (shr-ensure-newline): Respect that we're in a
            • , if we are, and don't insert newlines there. (shr-ensure-paragraph): When mixing newlines and paragraph ensurements, don't insert too many blank lines. (shr-tag-div): A
              shouldn't introduce a paragraph, but a new line. (cherry picked from commit 292921facaff2f02ac4e8602c1f7ecbdcfe7ef45) Backport: diff --git a/lisp/net/shr.el b/lisp/net/shr.el index e943132..900b8ec 100644 --- a/lisp/net/shr.el +++ b/lisp/net/shr.el @@ -783,8 +783,13 @@ size, and full-buffer size." (url-expand-file-name url (concat (car base) (cadr base)))))) (defun shr-ensure-newline () - (unless (zerop (current-column)) - (insert "\n"))) + (unless (bobp) + (let ((prefix (get-text-property (line-beginning-position) + 'shr-prefix-length))) + (unless (or (zerop (current-column)) + (and prefix + (= prefix (- (point) (line-beginning-position))))) + (insert "\n"))))) (defun shr-ensure-paragraph () (unless (bobp) @@ -812,6 +817,10 @@ size, and full-buffer size." (line-end-position)) (line-end-position))))) (delete-region (match-beginning 0) (match-end 0))) + ;; We have a single blank line. + ((and (eolp) (bolp)) + (insert "\n")) + ;; Insert new paragraph. (t (insert "\n\n")))))) @@ -1206,7 +1215,7 @@ ones, in case fg and bg are nil." (shr-ensure-paragraph)) (defun shr-tag-div (dom) - (shr-ensure-paragraph) + (shr-ensure-newline) (shr-generic dom) (shr-ensure-newline)) commit b8ea08b037fb16395b90481162587706e71b487c Author: Eli Zaretskii Date: Sat Mar 19 21:32:27 2016 +0200 Avoid errors in 'newline' * lisp/simple.el (newline): Don't barf if invoked with non-positive argument in the middle of a line. (Bug#22490) diff --git a/lisp/simple.el b/lisp/simple.el index 84a1919..2a81ee7 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -408,15 +408,19 @@ A non-nil INTERACTIVE argument means to run the `post-self-insert-hook'." (last-command-event ?\n) ;; Don't auto-fill if we have a numeric argument. (auto-fill-function (if arg nil auto-fill-function)) + (arg (prefix-numeric-value arg)) (postproc ;; Do the rest in post-self-insert-hook, because we want to do it ;; *before* other functions on that hook. (lambda () - (cl-assert (eq ?\n (char-before))) + ;; We are not going to insert any newlines if arg is + ;; non-positive. + (or (and (numberp arg) (<= arg 0)) + (cl-assert (eq ?\n (char-before)))) ;; Mark the newline(s) `hard'. (if use-hard-newlines (set-hard-newline-properties - (- (point) (prefix-numeric-value arg)) (point))) + (- (point) arg) (point))) ;; If the newline leaves the previous line blank, and we ;; have a left margin, delete that from the blank line. (save-excursion @@ -433,19 +437,21 @@ A non-nil INTERACTIVE argument means to run the `post-self-insert-hook'." (move-to-left-margin nil t))))) (unwind-protect (if (not interactive) - ;; FIXME: For non-interactive uses, many calls actually just want - ;; (insert "\n"), so maybe we should do just that, so as to avoid - ;; the risk of filling or running abbrevs unexpectedly. - (let ((post-self-insert-hook (list postproc))) - (self-insert-command (prefix-numeric-value arg))) - (unwind-protect - (progn - (add-hook 'post-self-insert-hook postproc nil t) - (self-insert-command (prefix-numeric-value arg))) - ;; We first used let-binding to protect the hook, but that was naive - ;; since add-hook affects the symbol-default value of the variable, - ;; whereas the let-binding might only protect the buffer-local value. - (remove-hook 'post-self-insert-hook postproc t))) + ;; FIXME: For non-interactive uses, many calls actually + ;; just want (insert "\n"), so maybe we should do just + ;; that, so as to avoid the risk of filling or running + ;; abbrevs unexpectedly. + (let ((post-self-insert-hook (list postproc))) + (self-insert-command arg)) + (unwind-protect + (progn + (add-hook 'post-self-insert-hook postproc nil t) + (self-insert-command arg)) + ;; We first used let-binding to protect the hook, but that + ;; was naive since add-hook affects the symbol-default + ;; value of the variable, whereas the let-binding might + ;; only protect the buffer-local value. + (remove-hook 'post-self-insert-hook postproc t))) (cl-assert (not (member postproc post-self-insert-hook))) (cl-assert (not (member postproc (default-value 'post-self-insert-hook)))))) nil) commit fc3cd53900eb5e80b91b6d2615b3800fd2f59c16 Author: Michael Albinus Date: Sat Mar 19 16:51:46 2016 +0100 Fix Bug#23032 * doc/misc/eshell.texi (Arguments): Mention the pipe symbol in remote file names. (Bug#23032) diff --git a/doc/misc/eshell.texi b/doc/misc/eshell.texi index f90c7d3..a7a3840 100644 --- a/doc/misc/eshell.texi +++ b/doc/misc/eshell.texi @@ -252,7 +252,9 @@ need to use a function that takes some other data type, you will need to call it in an Elisp expression (which can also be used with @ref{Expansion, expansions}). As with other shells, you can escape special characters and spaces with the backslash (@code{\}) and -apostrophes (@code{''}) and double quotes (@code{""}). +apostrophes (@code{''}) and double quotes (@code{""}). This is needed +especially for file names with special characters like pipe +(@code{|}), which could be part of remote file names. @node Built-ins commit dd2737b375d1eb3d7e0acbb9544fc8c85403d65e Author: Eli Zaretskii Date: Sat Mar 19 13:05:55 2016 +0200 Adjudicate review comments in abbrevs.texi * doc/lispref/abbrevs.texi (Abbrev Files, Abbrev Expansion): * doc/emacs/abbrevs.texi (Dabbrev Customization): State the default values of variables. Suggested by Steve Byrne . (Bug#23016) * admin/release-process (Check manuals): Mark files reviewed by Steve Byrne. diff --git a/admin/release-process b/admin/release-process index 2f23dac..3f75ff5 100644 --- a/admin/release-process +++ b/admin/release-process @@ -237,7 +237,7 @@ TUTORIAL.zh ** Check the manual. -abbrevs.texi +abbrevs.texi Steve Byrne ack.texi anti.texi arevert-xtra.texi @@ -292,7 +292,7 @@ xresources.texi ** Check the Lisp manual. -abbrevs.texi +abbrevs.texi Steve Byrne anti.texi back.texi backups.texi diff --git a/doc/emacs/abbrevs.texi b/doc/emacs/abbrevs.texi index e0441a1..a1db34c 100644 --- a/doc/emacs/abbrevs.texi +++ b/doc/emacs/abbrevs.texi @@ -435,9 +435,9 @@ copies the expansion verbatim including its case pattern. controls which characters are considered part of a word, for dynamic expansion purposes. The regular expression must match just one character, never two or more. The same regular expression also determines which -characters are part of an expansion. The value @code{nil} has a special -meaning: dynamic abbrevs are made of word characters, but expansions are -made of word and symbol characters. +characters are part of an expansion. The (default) value @code{nil} +has a special meaning: dynamic abbrevs are made of word characters, +but expansions are made of word and symbol characters. @vindex dabbrev-abbrev-skip-leading-regexp In shell scripts and makefiles, a variable name is sometimes prefixed @@ -445,4 +445,5 @@ with @samp{$} and sometimes not. Major modes for this kind of text can customize dynamic abbrev expansion to handle optional prefixes by setting the variable @code{dabbrev-abbrev-skip-leading-regexp}. Its value should be a regular expression that matches the optional prefix that -dynamic abbrev expression should ignore. +dynamic abbrev expression should ignore. The default is @code{nil}, +which means no characters should be skipped. diff --git a/doc/lispref/abbrevs.texi b/doc/lispref/abbrevs.texi index 5f5a395..cdea2a8 100644 --- a/doc/lispref/abbrevs.texi +++ b/doc/lispref/abbrevs.texi @@ -198,7 +198,10 @@ abbrevs in a file automatically, under the control of variables described here. @defopt abbrev-file-name -This is the default file name for reading and saving abbrevs. +This is the default file name for reading and saving abbrevs. By +default, Emacs will look for @file{~/.emacs.d/abbrev_defs}, and, if +not found, for @file{~/.abbrev_defs}; if neither file exists, Emacs +will create @file{~/.emacs.d/abbrev_defs}. @end defopt @defun quietly-read-abbrev-file &optional filename @@ -216,7 +219,7 @@ A non-@code{nil} value for @code{save-abbrevs} means that Emacs should offer to save abbrevs (if any have changed) when files are saved. If the value is @code{silently}, Emacs saves the abbrevs without asking the user. @code{abbrev-file-name} specifies the file to save the -abbrevs in. +abbrevs in. The default value is @code{t}. @end defopt @defvar abbrevs-changed @@ -282,7 +285,7 @@ omitted, it defaults to point. @code{name}, if non-@code{nil}, should be the name by which this abbrev was found (a string); it is used to figure out whether to adjust the capitalization of the expansion. The function returns @code{abbrev} if the abbrev was successfully -inserted. +inserted, otherwise it returns @code{nil}. @end defun @deffn Command abbrev-prefix-mark &optional arg commit 26f9c5075ff273013418a66b70fae477301d41d5 Author: Dmitry Gutov Date: Sat Mar 19 00:37:09 2016 +0200 Fixup the "normal" matcher; highlight global var symbols, too * lisp/progmodes/ruby-mode.el (ruby-font-lock-keywords): Highlight operator name symbols with the "normal" matcher (it actually needed updating). Highlight global variable symbols, too. diff --git a/lisp/progmodes/ruby-mode.el b/lisp/progmodes/ruby-mode.el index 2389f74..972bf99 100644 --- a/lisp/progmodes/ruby-mode.el +++ b/lisp/progmodes/ruby-mode.el @@ -2173,7 +2173,7 @@ See `font-lock-syntax-table'.") 'font-lock-string-face))) ;; Perl-ish keywords. "\\_<\\(?:BEGIN\\|END\\)\\_>\\|^__END__$" - ;; Variables. + ;; Singleton objects. (,(concat ruby-font-lock-keyword-beg-re "\\_<\\(nil\\|true\\|false\\)\\_>") 1 font-lock-constant-face) @@ -2181,7 +2181,7 @@ See `font-lock-syntax-table'.") ("\\_<__\\(?:LINE\\|ENCODING\\|FILE\\)__\\_>" (0 font-lock-builtin-face)) ;; Symbols. - ("\\(^\\|[^:]\\)\\(:@?\\(?:\\w\\|_\\)+\\)\\([!?=]\\)?" + ("\\(^\\|[^:]\\)\\(:@\\{0,2\\}\\(?:\\sw\\|\\s_\\)+\\)" (2 font-lock-constant-face) (3 (unless (and (eq (char-before (match-end 3)) ?=) (eq (char-after (match-end 3)) ?>)) commit 413e73b5dbce8dc89f2c3b9f4f1441fdf931c77d Author: Tassilo Horn Date: Fri Mar 18 23:29:58 2016 +0100 ; Small theme additions diff --git a/etc/themes/tsdh-light-theme.el b/etc/themes/tsdh-light-theme.el index 422b26c..9d618c5 100644 --- a/etc/themes/tsdh-light-theme.el +++ b/etc/themes/tsdh-light-theme.el @@ -25,9 +25,8 @@ Used and created by Tassilo Horn.") (custom-theme-set-faces 'tsdh-light - '(Info-quoted ((t (:weight bold)))) - '(ace-jump-face-foreground ((t (:foreground "DeepPink" :box nil :weight bold)))) - '(aw-leading-char-face ((t (:inherit ace-jump-face-foreground)))) + '(Info-quoted ((t (:underline "gray40" :weight bold)))) + '(aw-leading-char-face ((t (:background "red" :foreground "white" :weight bold)))) '(default ((t (:background "white" :foreground "black")))) '(diff-added ((t (:inherit diff-changed :background "light green")))) '(diff-changed ((t (:background "light steel blue")))) @@ -36,6 +35,8 @@ Used and created by Tassilo Horn.") '(diff-indicator-removed ((t (:inherit diff-indicator-changed)))) '(diff-removed ((t (:inherit diff-changed :background "sandy brown")))) '(dired-directory ((t (:inherit font-lock-function-name-face :weight bold)))) + '(font-lock-regexp-grouping-backslash ((t (:inherit bold :foreground "black")))) + '(font-lock-regexp-grouping-construct ((t (:inherit bold :foreground "black")))) '(gnus-button ((t (:inherit button)))) '(gnus-header-name ((t (:box (:line-width 1 :style released-button) :weight bold)))) '(gnus-group-mail-1 ((t (:inherit gnus-group-mail-1-empty :weight bold)))) commit cd950da9dbbe05fd4cd62557943fedb6b34723f3 Author: Marcin Borkowski Date: Mon Mar 14 11:15:10 2016 +0100 Honor prefix arg in doc-view-next-line-or-next-page * lisp/doc-view.el (doc-view-next-line-or-next-page): Take the prefix argument into consideration when continuous scrolling is not in effect (i.e., by default) (bug#19559). diff --git a/lisp/doc-view.el b/lisp/doc-view.el index 9d912c3..223565c 100644 --- a/lisp/doc-view.el +++ b/lisp/doc-view.el @@ -626,7 +626,7 @@ at the bottom edge of the page moves to the next page." (image-bob) (image-bol 1)) (set-window-hscroll (selected-window) hscroll))) - (image-next-line 1))) + (image-next-line arg))) (defun doc-view-previous-line-or-previous-page (&optional arg) "Scroll downward by ARG lines if possible, else goto previous page. commit ed909c049e845a22a7beb626ac98f139388005fa Author: Paul Eggert Date: Fri Mar 18 08:54:49 2016 -0700 ; Spelling fixes diff --git a/lisp/forms.el b/lisp/forms.el index c0b48fd..b068352 100644 --- a/lisp/forms.el +++ b/lisp/forms.el @@ -593,7 +593,7 @@ Commands: Equivalent keys in read-only mode: ;; set-visited-file-name from calling set-auto-mode, which ;; might kill all local variables and set forms-file nil, ;; which will then barf in find-file-noselect below. This can - ;; hapen when the user sets the default major mode that is + ;; happen when the user sets the default major mode that is ;; different from the Fundamental mode. (let (change-major-mode-with-file-name) (set-visited-file-name nil)) diff --git a/lisp/progmodes/cc-defs.el b/lisp/progmodes/cc-defs.el index 3b9f44e..f458904 100644 --- a/lisp/progmodes/cc-defs.el +++ b/lisp/progmodes/cc-defs.el @@ -1407,7 +1407,7 @@ been put there by c-put-char-property. POINT remains unchanged." (c-state-cache-good-pos c-state-cache-good-pos) ;(c-state-nonlit-pos-cache (copy-tree c-state-nonlit-pos-cache)) ;(c-state-nonlit-pos-cache-limit c-state-nonlit-pos-cache-limit) - ;(c-state-semi-nonlit-pos-cache (copy-treec c-state-semi-nonlit-pos-cache)) + ;(c-state-semi-nonlit-pos-cache (copy-tree c-state-semi-nonlit-pos-cache)) ;(c-state-semi-nonlit-pos-cache-limit c-state-semi-nonlit-pos-cache) (c-state-brace-pair-desert (copy-tree c-state-brace-pair-desert)) (c-state-point-min c-state-point-min) diff --git a/src/floatfns.c b/src/floatfns.c index b9af03b..c1bd258 100644 --- a/src/floatfns.c +++ b/src/floatfns.c @@ -3,8 +3,7 @@ Copyright (C) 1988, 1993-1994, 1999, 2001-2016 Free Software Foundation, Inc. -Author: Wolfgang Rupprecht (ac -ording to ack.texi) +Author: Wolfgang Rupprecht (according to ack.texi) This file is part of GNU Emacs. commit 6da3a6dc9e3e9ac3d7bb666410926ebc4a078505 Author: Paul Eggert Date: Fri Mar 18 08:42:15 2016 -0700 Port to strict C99 offsetof * src/bidi.c (bidi_copy_it): * src/lisp.h (CHAR_TABLE_EXTRA_SLOTS): Use only a single identifier as the second argument of offsetof. Found by using clang -pedantic. diff --git a/src/bidi.c b/src/bidi.c index a68ffdb..c23ff95 100644 --- a/src/bidi.c +++ b/src/bidi.c @@ -532,7 +532,7 @@ bidi_copy_it (struct bidi_it *to, struct bidi_it *from) /* Copy everything from the start through the active part of the level stack. */ memcpy (to, from, - (offsetof (struct bidi_it, level_stack[1]) + (offsetof (struct bidi_it, level_stack) + sizeof from->level_stack[0] + from->stack_idx * sizeof from->level_stack[0])); } diff --git a/src/lisp.h b/src/lisp.h index 2758884..6a98adb 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -1766,7 +1766,8 @@ CHAR_TABLE_EXTRA_SLOTS (struct Lisp_Char_Table *ct) /* Make sure that sub char-table contents slot is where we think it is. */ verify (offsetof (struct Lisp_Sub_Char_Table, contents) - == offsetof (struct Lisp_Vector, contents[SUB_CHAR_TABLE_OFFSET])); + == (offsetof (struct Lisp_Vector, contents) + + SUB_CHAR_TABLE_OFFSET * sizeof (Lisp_Object))); /*********************************************************************** Symbols commit de7601f149a5fedc1f3f62c62ba94b9d0e3d2069 Author: Paul Eggert Date: Fri Mar 18 08:36:59 2016 -0700 Port to GTK with strict C11 compiler * src/gtkutil.c (xg_create_frame_widgets, xg_toggle_notify_cb): Cast from function type to void * where the C standard requires this. This works around a problem in the prototypes for g_signal_handler_find and g_signal_handlers_block_by_func, which use gpointer instead of GCallback. Found by using gcc -pedantic. diff --git a/src/gtkutil.c b/src/gtkutil.c index 7dca585..ba059b7 100644 --- a/src/gtkutil.c +++ b/src/gtkutil.c @@ -1300,7 +1300,7 @@ xg_create_frame_widgets (struct frame *f) if (! g_signal_handler_find (G_OBJECT (gs), G_SIGNAL_MATCH_FUNC, 0, 0, 0, - G_CALLBACK (style_changed_cb), + (gpointer) G_CALLBACK (style_changed_cb), 0)) { g_signal_connect (G_OBJECT (gs), "notify::gtk-theme-name", @@ -1832,14 +1832,10 @@ xg_toggle_notify_cb (GObject *gobject, GParamSpec *arg1, gpointer user_data) if (!!visible != !!toggle_on) { - g_signal_handlers_block_by_func (G_OBJECT (wtoggle), - G_CALLBACK (xg_toggle_visibility_cb), - gobject); + gpointer cb = (gpointer) G_CALLBACK (xg_toggle_visibility_cb); + g_signal_handlers_block_by_func (G_OBJECT (wtoggle), cb, gobject); gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (wtoggle), visible); - g_signal_handlers_unblock_by_func - (G_OBJECT (wtoggle), - G_CALLBACK (xg_toggle_visibility_cb), - gobject); + g_signal_handlers_unblock_by_func (G_OBJECT (wtoggle), cb, gobject); } x_gtk_show_hidden_files = visible; } commit 658aa2dae8093fede8c823090c67e02756dd6ed5 Author: Paul Eggert Date: Thu Mar 17 23:45:02 2016 -0700 Port to GTK with strict C99 compiler * src/emacsgtkfixed.c: Use workaround for GNOME bug 683906 only in glib 2.35.6 and earlier, since the bug is fixed in 2.35.7. * src/emacsgtkfixed.c (EmacsFixedPrivate): * src/emacsgtkfixed.h (EmacsFixedClass): Remove duplicate typedef, which strict C99 does not allow (Bug#23003). diff --git a/src/emacsgtkfixed.c b/src/emacsgtkfixed.c index cebd7b6..ca0bbfb 100644 --- a/src/emacsgtkfixed.c +++ b/src/emacsgtkfixed.c @@ -27,13 +27,12 @@ along with GNU Emacs. If not, see . */ #include "emacsgtkfixed.h" /* Silence a bogus diagnostic; see GNOME bug 683906. */ -#if 4 < __GNUC__ + (7 <= __GNUC_MINOR__) +#if 4 < __GNUC__ + (7 <= __GNUC_MINOR__) && ! GLIB_CHECK_VERSION (2, 35, 7) # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wunused-local-typedefs" #endif typedef struct _EmacsFixed EmacsFixed; -typedef struct _EmacsFixedPrivate EmacsFixedPrivate; typedef struct _EmacsFixedClass EmacsFixedClass; struct _EmacsFixedPrivate diff --git a/src/emacsgtkfixed.h b/src/emacsgtkfixed.h index 3d6a76a..0d09525 100644 --- a/src/emacsgtkfixed.h +++ b/src/emacsgtkfixed.h @@ -30,7 +30,6 @@ G_BEGIN_DECLS struct frame; typedef struct _EmacsFixedPrivate EmacsFixedPrivate; -typedef struct _EmacsFixedClass EmacsFixedClass; struct _EmacsFixed { commit 1df7173eb23510ef5faabede04a487955aec2917 Author: Anders Lindgren Date: Thu Mar 17 21:07:04 2016 +0100 Avoid screen artifacts with new OS X visible bell after scrolling * src/nsterm.m (EmacsBell): Save NSView when displaying the visible bell and set `needsDisplay' when removed. (hide_bell): Trace. (ns_copy_bits): Trace. diff --git a/src/nsterm.m b/src/nsterm.m index 38aa4a3..b796193 100644 --- a/src/nsterm.m +++ b/src/nsterm.m @@ -1172,10 +1172,31 @@ static NSRect constrain_frame_rect(NSRect frameRect, bool isFullscreen) ========================================================================== */ +// This bell implementation shows the visual bell image asynchronously +// from the rest of Emacs. This is done by adding a NSView to the +// superview of the Emacs window and removing it using a timer. +// +// Unfortunately, some Emacs operations, like scrolling, is done using +// low-level primitives that copy the content of the window, including +// the bell image. To some extent, this is handled by removing the +// image prior to scrolling and marking that the window is in need for +// redisplay. +// +// To test this code, make sure that there is no artifacts of the bell +// image in the following situations. Use a non-empty buffer (like the +// tutorial) to ensure that a scroll is performed: +// +// * Single-window: C-g C-v +// +// * Side-by-windows: C-x 3 C-g C-v +// +// * Windows above each other: C-x 2 C-g C-v + @interface EmacsBell : NSImageView { // Number of currently active bell:s. unsigned int nestCount; + NSView * mView; bool isAttached; } - (void)show:(NSView *)view; @@ -1204,7 +1225,6 @@ - (id)init; [self.image unlockFocus]; #else self.image = [NSImage imageNamed:NSImageNameCaution]; - [self.image setScalesWhenResized:YES]; [self.image setSize:NSMakeSize(self.image.size.width * 5, self.image.size.height * 5)]; #endif @@ -1229,6 +1249,7 @@ - (void)show:(NSView *)view [self setFrameSize:self.image.size]; isAttached = true; + mView = view; [[[view window] contentView] addSubview:self positioned:NSWindowAbove relativeTo:nil]; @@ -1258,9 +1279,12 @@ - (void)hide -(void)remove { + NSTRACE ("[EmacsBell remove]"); if (isAttached) { + NSTRACE_MSG ("removeFromSuperview"); [self removeFromSuperview]; + mView.needsDisplay = YES; isAttached = false; } } @@ -1310,6 +1334,8 @@ static void hide_bell () Ensure the bell is hidden. -------------------------------------------------------------------------- */ { + NSTRACE ("hide_bell"); + if (bell_view != nil) { [bell_view remove]; @@ -2392,6 +2418,8 @@ static void hide_bell () static void ns_copy_bits (struct frame *f, NSRect src, NSRect dest) { + NSTRACE ("ns_copy_bits"); + if (FRAME_NS_VIEW (f)) { hide_bell(); // Ensure the bell image isn't scrolled. commit 7a2edd3427b8006805c8fd293c2e481114776e4d Merge: dca240a 9094304 Author: Michael Albinus Date: Thu Mar 17 20:34:49 2016 +0100 Merge branch 'emacs-25' of git.sv.gnu.org:/srv/git/emacs into emacs-25 commit dca240a70dcb1456a079a4738ac8e04c6698fc78 Author: Michael Albinus Date: Thu Mar 17 20:33:51 2016 +0100 Suppress some Tramp tests for OSX, do not merge with master * test/automated/tramp-tests.el (tramp--test-darwin-p): New defun. (tramp--test-utf8): Use it. (Bug#22145) diff --git a/test/automated/tramp-tests.el b/test/automated/tramp-tests.el index a29e42e..d9563ec 100644 --- a/test/automated/tramp-tests.el +++ b/test/automated/tramp-tests.el @@ -1785,6 +1785,14 @@ Several special characters do not work properly there." (file-truename tramp-test-temporary-file-directory) nil (string-match "^HP-UX" (tramp-get-connection-property v "uname" "")))) +(defun tramp--test-darwin-p () + "Check, whether the remote host runs Mac OS X. +Several special characters do not work properly there." + ;; We must refill the cache. `file-truename' does it. + (with-parsed-tramp-file-name + (file-truename tramp-test-temporary-file-directory) nil + (string-match "^Darwin" (tramp-get-connection-property v "uname" "")))) + (defun tramp--test-check-files (&rest files) "Run a simple but comprehensive test over every file in FILES." ;; We must use `file-truename' for the temporary directory, because @@ -2038,9 +2046,10 @@ Use the `ls' command." (file-name-coding-system 'utf-8)) (tramp--test-check-files (unless (tramp--test-hpux-p) "Γυρίστε το Γαλαξία με Ώτο Στοπ") - (unless (tramp--test-hpux-p) + (unless (or (tramp--test-hpux-p) (tramp--test-darwin-p)) "أصبح بوسعك الآن تنزيل نسخة كاملة من موسوعة ويكيبيديا العربية لتصفحها بلا اتصال بالإنترنت") - "银河系漫游指南系列" + (unless (tramp--test-darwin-p) + "银河系漫游指南系列") "Автостопом по гала́ктике"))) (ert-deftest tramp-test32-utf8 () commit 9094304a9c109495bf2212a713df1b07270d15cd Author: Glenn Morris Date: Thu Mar 17 12:55:09 2016 -0400 * lisp/progmodes/xref.el (xref-buffer-name, xref--window): Move definitions before use. diff --git a/lisp/progmodes/xref.el b/lisp/progmodes/xref.el index 69e6a15..feed0fb 100644 --- a/lisp/progmodes/xref.el +++ b/lisp/progmodes/xref.el @@ -436,6 +436,8 @@ If SELECT is non-nil, select the target window." ;;; XREF buffer (part of the UI) ;; The xref buffer is used to display a set of xrefs. +(defconst xref-buffer-name "*xref*" + "The name of the buffer to show xrefs.") (defmacro xref--with-dedicated-window (&rest body) `(let* ((xref-w (get-buffer-window xref-buffer-name)) @@ -470,6 +472,9 @@ If SELECT is non-nil, select the target window." (xref--show-pos-in-buf marker buf select)) (user-error (message (error-message-string err))))) +(defvar-local xref--window nil + "The original window this xref buffer was created from.") + (defun xref-show-location-at-point () "Display the source of xref at point in the appropriate window, if any." (interactive) @@ -500,9 +505,6 @@ If SELECT is non-nil, select the target window." (back-to-indentation) (get-text-property (point) 'xref-item))) -(defvar-local xref--window nil - "The original window this xref buffer was created from.") - (defun xref-goto-xref () "Jump to the xref on the current line and select its window." (interactive) @@ -624,9 +626,6 @@ references displayed in the current *xref* buffer." (t (error "No %s xref" (if backward "previous" "next")))))) -(defconst xref-buffer-name "*xref*" - "The name of the buffer to show xrefs.") - (defvar xref--button-map (let ((map (make-sparse-keymap))) (define-key map [(control ?m)] #'xref-goto-xref) commit cbedfc26584fdffebedb713775ce5f97576ca75b Author: Glenn Morris Date: Thu Mar 17 12:52:11 2016 -0400 * lisp/gnus/mm-decode.el (gnus-format-message): Autoload it. ; Do not merge to master. diff --git a/lisp/gnus/mm-decode.el b/lisp/gnus/mm-decode.el index f70877d..3ea63c7 100644 --- a/lisp/gnus/mm-decode.el +++ b/lisp/gnus/mm-decode.el @@ -30,6 +30,7 @@ (autoload 'gnus-map-function "gnus-util") (autoload 'gnus-replace-in-string "gnus-util") (autoload 'gnus-read-shell-command "gnus-util") +(autoload 'gnus-format-message "gnus-util") (autoload 'mm-inline-partial "mm-partial") (autoload 'mm-inline-external-body "mm-extern") commit 005ac7c28b0eb16a0b4690feeb1a4918465e83e7 Author: Glenn Morris Date: Thu Mar 17 09:04:51 2016 -0700 * lisp/mail/rmail.el (rmail-mime-entity-truncated): Declare. diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el index 70b0f23..10ba5b3 100644 --- a/lisp/mail/rmail.el +++ b/lisp/mail/rmail.el @@ -4582,6 +4582,8 @@ Argument MIME is non-nil if this is a mime message." (list armor-start (- (point-max) after-end) mime armor-end-regexp))) +(declare-function rmail-mime-entity-truncated "rmailmm" (entity)) + ;; Should this have a key-binding, or be in a menu? ;; There doesn't really seem to be an appropriate menu. ;; Eg the edit command is not in a menu either. commit 9ab03f27fad7b1ae68dda7a2effd075658dcf184 Author: Glenn Morris Date: Thu Mar 17 07:18:52 2016 -0400 ; Auto-commit of loaddefs files. diff --git a/lisp/dired.el b/lisp/dired.el index 24b128f..ef22d45 100644 --- a/lisp/dired.el +++ b/lisp/dired.el @@ -4428,7 +4428,7 @@ instead. ;;;*** -;;;### (autoloads nil "dired-x" "dired-x.el" "8dae922d1549647835460b6cb70af4df") +;;;### (autoloads nil "dired-x" "dired-x.el" "f00ad5ec7383d017263855ad8add60a3") ;;; Generated autoloads from dired-x.el (autoload 'dired-jump "dired-x" "\ commit 56df61712ac446d3dcd9c897f687cc74a04be314 Author: Glenn Morris Date: Wed Mar 16 23:56:32 2016 -0700 Address compilation warnings due to 2016-01-03 mml refactoring. * lisp/gnus/mml-sec.el (password-cache, mm-encode): Require. (message-options-get): Autoload. (message-options-set): Declare. (mml-secure-cache-passphrase, mml-secure-passphrase-cache-expiry): Simplify default value. * lisp/gnus/mml-smime.el (message-options-set): Remove declaration. * lisp/gnus/mml1991.el, lisp/gnus/mml2015.el: No longer a need for password-cache. diff --git a/lisp/gnus/mml-sec.el b/lisp/gnus/mml-sec.el index 3ac3da0..254c427 100644 --- a/lisp/gnus/mml-sec.el +++ b/lisp/gnus/mml-sec.el @@ -27,6 +27,8 @@ (require 'gnus-util) (require 'epg) +(require 'password-cache) +(require 'mm-encode) (autoload 'mail-strip-quoted-names "mail-utils") (autoload 'mml2015-sign "mml2015") @@ -35,6 +37,7 @@ (autoload 'mml1991-encrypt "mml1991") (autoload 'message-fetch-field "message") (autoload 'message-goto-body "message") +(autoload 'message-options-get "message") (autoload 'mml-insert-tag "mml") (autoload 'mml-smime-sign "mml-smime") (autoload 'mml-smime-encrypt "mml-smime") @@ -44,6 +47,8 @@ (autoload 'mml-smime-verify-test "mml-smime") (autoload 'epa--select-keys "epa") +(declare-function message-options-set "message" (symbol value)) + (defvar mml-sign-alist '(("smime" mml-smime-sign-buffer mml-smime-sign-query) ("pgp" mml-pgp-sign-buffer list) @@ -110,20 +115,15 @@ details." :group 'message :type 'boolean) -(defcustom mml-secure-cache-passphrase - (if (boundp 'password-cache) - password-cache - t) +;; FIXME If it's "NOT recommended", why is it the default? +(defcustom mml-secure-cache-passphrase password-cache "If t, cache OpenPGP or S/MIME passphrases inside Emacs. Passphrase caching in Emacs is NOT recommended. Use gpg-agent instead. See Info node `(message) Security'." :group 'message :type 'boolean) -(defcustom mml-secure-passphrase-cache-expiry - (if (boundp 'password-cache-expiry) - password-cache-expiry - 16) +(defcustom mml-secure-passphrase-cache-expiry password-cache-expiry "How many seconds the passphrase is cached. Whether the passphrase is cached at all is controlled by `mml-secure-cache-passphrase'." diff --git a/lisp/gnus/mml-smime.el b/lisp/gnus/mml-smime.el index 248e636..502c65b 100644 --- a/lisp/gnus/mml-smime.el +++ b/lisp/gnus/mml-smime.el @@ -356,10 +356,6 @@ Whether the passphrase is cached at all is controlled by (autoload 'mml-compute-boundary "mml") -;; We require mm-decode, which requires mm-bodies, which autoloads -;; message-options-get (!). -(declare-function message-options-set "message" (symbol value)) - (defun mml-smime-epg-sign (cont) (let ((inhibit-redisplay t) (boundary (mml-compute-boundary cont))) diff --git a/lisp/gnus/mml1991.el b/lisp/gnus/mml1991.el index bb5c940..568dc56 100644 --- a/lisp/gnus/mml1991.el +++ b/lisp/gnus/mml1991.el @@ -25,11 +25,6 @@ ;;; Code: -(eval-and-compile - (if (locate-library "password-cache") - (require 'password-cache) - (require 'password))) - (eval-when-compile (require 'cl) (require 'mm-util)) diff --git a/lisp/gnus/mml2015.el b/lisp/gnus/mml2015.el index e2e9977..61ca536 100644 --- a/lisp/gnus/mml2015.el +++ b/lisp/gnus/mml2015.el @@ -27,11 +27,6 @@ ;;; Code: -(eval-and-compile - (if (locate-library "password-cache") - (require 'password-cache) - (require 'password))) - (eval-when-compile (require 'cl)) (require 'mm-decode) (require 'mm-util) commit a1ef911f31b81a47482dca4ea01f2c90442c0724 Author: Stefan Monnier Date: Wed Mar 16 22:55:56 2016 -0400 * lisp/emacs-lisp/smie.el (smie-indent-keyword): Don't burp in strings (bug#22960). diff --git a/lisp/emacs-lisp/smie.el b/lisp/emacs-lisp/smie.el index 495ba7c..1d8f0cb 100644 --- a/lisp/emacs-lisp/smie.el +++ b/lisp/emacs-lisp/smie.el @@ -1493,7 +1493,10 @@ should not be computed on the basis of the following token." (let ((endpos (point))) (goto-char pos) (forward-line 1) - (and (equal res (smie-indent-forward-token)) + ;; As seen in bug#22960, pos may be inside + ;; a string, and forward-token may then stumble. + (and (ignore-errors + (equal res (smie-indent-forward-token))) (eq (point) endpos))))) nil (goto-char pos) commit 79ae7fbe915f761f166a33f791311eab6b8f6713 Author: Glenn Morris Date: Wed Mar 16 17:38:27 2016 -0400 * lisp/dired-x.el (dired-omit-here-always): Correct error message for 2016-01-25 change. diff --git a/lisp/dired-x.el b/lisp/dired-x.el index 84de13d..088ca81 100644 --- a/lisp/dired-x.el +++ b/lisp/dired-x.el @@ -816,7 +816,7 @@ If in a Dired buffer, reverts it." (interactive) (if (file-exists-p dired-local-variables-file) (error "Old-style dired-local-variables-file `./%s' found; -replace it with a dir-locals-file `./%s.el'" +replace it with a dir-locals-file `./%s'" dired-local-variables-file dir-locals-file)) (if (file-exists-p dir-locals-file) commit 253929fee3c990703f26fc76ccb9ea8b56881772 Author: Glenn Morris Date: Wed Mar 16 17:36:57 2016 -0400 * lisp/dired-x.el (dired-omit-here-always): Replace undefined function removed 2016-01-30. ; Do not merge to master. diff --git a/lisp/dired-x.el b/lisp/dired-x.el index dccaa9e..84de13d 100644 --- a/lisp/dired-x.el +++ b/lisp/dired-x.el @@ -819,9 +819,8 @@ If in a Dired buffer, reverts it." replace it with a dir-locals-file `./%s.el'" dired-local-variables-file dir-locals-file)) - (if (dir-locals--all-files default-directory) - (message "File `./%s' already exists." - (car (dir-locals--all-files default-directory))) + (if (file-exists-p dir-locals-file) + (message "File `./%s' already exists." dir-locals-file) (add-dir-local-variable 'dired-mode 'subdirs nil) (add-dir-local-variable 'dired-mode 'dired-omit-mode t) ;; Run extra-hooks and revert directory. commit ce533897e0523dd1930c74789641c5feb96473a3 Author: Glenn Morris Date: Wed Mar 16 17:24:36 2016 -0400 * lisp/xml.el (xml-parse-tag-1): Replace undefined function. ; string-empty-p is defined in subr-x, but this file does not load it. diff --git a/lisp/xml.el b/lisp/xml.el index 1802d04..414300c 100644 --- a/lisp/xml.el +++ b/lisp/xml.el @@ -580,7 +580,7 @@ Return one of: ;; However, if we're parsing incrementally, then we need to deal ;; with stray CDATA. (let ((s (xml-parse-string))) - (when (string-empty-p s) + (when (zerop (length s)) ;; We haven't consumed any input! We must throw an error in ;; order to prevent looping forever. (error "XML: (Not Well-Formed) Could not parse: %s" commit d6d164f6110a68a3acb816fd2ae7e55e71a18aef Author: Eli Zaretskii Date: Wed Mar 16 19:04:16 2016 +0200 Avoid segfaults due to frame image cache being absent * src/image.c (cache_image): If the frame doesn't have an image cache, create it. (Bug#23028) diff --git a/src/image.c b/src/image.c index a44b90b..e8418b8 100644 --- a/src/image.c +++ b/src/image.c @@ -1830,6 +1830,9 @@ cache_image (struct frame *f, struct image *img) struct image_cache *c = FRAME_IMAGE_CACHE (f); ptrdiff_t i; + if (!c) + c = FRAME_IMAGE_CACHE (f) = make_image_cache (); + /* Find a free slot in c->images. */ for (i = 0; i < c->used; ++i) if (c->images[i] == NULL) commit bc7f6f632900f0fbae1b2ea793f43472e1c2546c Author: Eli Zaretskii Date: Wed Mar 16 18:57:46 2016 +0200 Improve documentation of glyphless-character display * doc/emacs/display.texi (Text Display): Document and index the 'glyphless-char' face. diff --git a/doc/emacs/display.texi b/doc/emacs/display.texi index e3b2403..c8987c2 100644 --- a/doc/emacs/display.texi +++ b/doc/emacs/display.texi @@ -1476,15 +1476,18 @@ elisp, The Emacs Lisp Reference Manual}. @cindex glyphless characters @cindex characters with no font glyphs +@cindex glyphless-char face On graphical displays, some characters may have no glyphs in any of the fonts available to Emacs. These @dfn{glyphless characters} are normally displayed as boxes containing the hexadecimal character code. Similarly, on text terminals, characters that cannot be displayed using the terminal encoding (@pxref{Terminal Coding}) are normally displayed as question signs. You can control the display method by -customizing the variable @code{glyphless-char-display-control}. -@xref{Glyphless Chars,, Glyphless Character Display, elisp, The Emacs -Lisp Reference Manual}, for details. +customizing the variable @code{glyphless-char-display-control}. You +can also customize the @code{glyphless-char} face to make these +characters more prominent on display. @xref{Glyphless Chars,, +Glyphless Character Display, elisp, The Emacs Lisp Reference Manual}, +for details. @cindex curly quotes @cindex curved quotes commit 6b6916e8724370219843311fd7e0ee469e3ad2f2 Author: Eli Zaretskii Date: Wed Mar 16 18:52:36 2016 +0200 ; * src/xdisp.c (with_echo_area_buffer): Fix typos in comments. diff --git a/src/xdisp.c b/src/xdisp.c index edefe32..d68244e 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -10524,8 +10524,8 @@ ensure_echo_area_buffers (void) suitable buffer from echo_buffer[] and clear it. If WHICH < 0, set echo_area_buffer[1] to echo_area_buffer[0], so - that the current message becomes the last displayed one, make - choose a suitable buffer for echo_area_buffer[0], and clear it. + that the current message becomes the last displayed one, choose a + suitable buffer for echo_area_buffer[0], and clear it. Value is what FN returns. */ @@ -10559,7 +10559,7 @@ with_echo_area_buffer (struct window *w, int which, echo_area_buffer[this_one] = Qnil; } - /* Choose a suitable buffer from echo_buffer[] is we don't + /* Choose a suitable buffer from echo_buffer[] if we don't have one. */ if (NILP (echo_area_buffer[this_one])) { commit ee9a1f7ee9573b11a0e5f6ccf0258a290087f6a4 Author: Dmitry Gutov Date: Wed Mar 16 15:58:21 2016 +0200 Support safe navigation operator in non-SMIE indentation code * lisp/progmodes/ruby-mode.el (ruby-calculate-indent): Support safe navigation operator in non-SMIE indentation code. Cherry-picked from https://github.com/ruby/ruby/commit/68e16ddd7961b86e5013e62ae2954e88638de058. diff --git a/lisp/progmodes/ruby-mode.el b/lisp/progmodes/ruby-mode.el index 60480d6..2389f74 100644 --- a/lisp/progmodes/ruby-mode.el +++ b/lisp/progmodes/ruby-mode.el @@ -1374,7 +1374,7 @@ delimiter." (goto-char ruby-indent-point) (beginning-of-line) (skip-syntax-forward " ") - (if (looking-at "\\.[^.]") + (if (looking-at "\\.[^.]\\|&\\.") (+ indent ruby-indent-level) indent)))) commit c3ed95b1c57265138b7673ea37eef2d30204abcc Author: Thomas Fitzsimmons Date: Wed Mar 16 09:15:17 2016 -0400 Move xsd:base64Binary decoding fix to debbugs.el 0.9.1 * lisp/net/soap-client.el (soap-encode-xs-basic-type): Do not assume xsd:base64Binary values are UTF-8 strings. (soap-decode-xs-basic-type): Likewise. (soap-invoke): Document xsd:base64Binary handling. diff --git a/lisp/net/soap-client.el b/lisp/net/soap-client.el index 7402464..12c9f41 100644 --- a/lisp/net/soap-client.el +++ b/lisp/net/soap-client.el @@ -538,7 +538,7 @@ This is a specialization of `soap-encode-value' for (base64Binary (unless (stringp value) (error "Not a string value for base64Binary")) - (base64-encode-string (encode-coding-string value 'utf-8))) + (base64-encode-string value)) (otherwise (error "Don't know how to encode %s for type %s" @@ -682,7 +682,7 @@ This is a specialization of `soap-decode-type' for decimal byte float double duration) (string-to-number (car contents))) (boolean (string= (downcase (car contents)) "true")) - (base64Binary (decode-coding-string (base64-decode-string (car contents)) 'utf-8)) + (base64Binary (base64-decode-string (car contents))) (anyType (soap-decode-any-type node)) (Array (soap-decode-array node)))))) @@ -3096,7 +3096,11 @@ the SOAP request. NOTE: The SOAP service provider should document the available operations and their parameters for the service. You can also use the `soap-inspect' function to browse the available -operations in a WSDL document." +operations in a WSDL document. + +NOTE: `soap-invoke' base64-decodes xsd:base64Binary return values +into unibyte strings; these byte-strings require further +interpretation by the caller." (apply #'soap-invoke-internal nil nil wsdl service operation-name parameters)) (defun soap-invoke-async (callback cbargs wsdl service operation-name commit 2036be4666becf02f4524d63595e3da55b14ff0d Author: Dmitry Gutov Date: Wed Mar 16 04:32:59 2016 +0200 Fix Ruby's operator precedence * lisp/progmodes/ruby-mode.el (ruby-smie-grammar): Rearrange the smie-precs->prec2 form. diff --git a/lisp/progmodes/ruby-mode.el b/lisp/progmodes/ruby-mode.el index edd89b3..60480d6 100644 --- a/lisp/progmodes/ruby-mode.el +++ b/lisp/progmodes/ruby-mode.el @@ -406,16 +406,17 @@ It is used when `ruby-encoding-magic-comment-style' is set to `custom'." '((right "=") (right "+=" "-=" "*=" "/=" "%=" "**=" "&=" "|=" "^=" "<<=" ">>=" "&&=" "||=") - (left ".." "...") - (left "+" "-") - (left "*" "/" "%" "**") + (nonassoc ".." "...") (left "&&" "||") - (left "^" "&" "|") (nonassoc "<=>") - (nonassoc ">" ">=" "<" "<=") (nonassoc "==" "===" "!=") (nonassoc "=~" "!~") + (nonassoc ">" ">=" "<" "<=") + (left "^" "&" "|") (left "<<" ">>") + (left "+" "-") + (left "*" "/" "%") + (left "**") (assoc ".")))))) (defun ruby-smie--bosp () diff --git a/test/indent/ruby.rb b/test/indent/ruby.rb index 85f2708..b038512 100644 --- a/test/indent/ruby.rb +++ b/test/indent/ruby.rb @@ -295,10 +295,31 @@ def begin tee < qux zux do - foo == bar and + foo == bar && tee == qux + + a = 3 and + b = 4 end +foo + bar == + tee + qux + +1 .. 2 && + 3 + +3 < 4 + + 5 + +10 << 4 ^ + 20 + +100 + 2 >> + 3 + +2 ** 10 / + 2 + foo ^ bar commit 1d686c2afb7c6c869c339f7c70daae969b429429 Author: Dmitry Gutov Date: Wed Mar 16 01:48:10 2016 +0200 (ruby-interpolation-inside-another-interpolation): New failing test * test/automated/ruby-mode-tests.el (ruby-interpolation-inside-another-interpolation): New failing test. diff --git a/test/automated/ruby-mode-tests.el b/test/automated/ruby-mode-tests.el index 4fa7470..7e85fb8 100644 --- a/test/automated/ruby-mode-tests.el +++ b/test/automated/ruby-mode-tests.el @@ -449,6 +449,14 @@ VALUES-PLIST is a list with alternating index and value elements." ;; It's confused by the closing paren in the middle. (ruby-assert-state s 8 nil))) +(ert-deftest ruby-interpolation-inside-another-interpolation () + :expected-result :failed + (let ((s "\"#{[a, b, c].map { |v| \"#{v}\" }.join}\"")) + (ruby-assert-face s 1 font-lock-string-face) + (ruby-assert-face s 2 font-lock-variable-name-face) + (ruby-assert-face s 38 font-lock-string-face) + (ruby-assert-state s 8 nil))) + (ert-deftest ruby-interpolation-inside-double-quoted-percent-literals () (ruby-assert-face "%Q{foo #@bar}" 8 font-lock-variable-name-face) (ruby-assert-face "%W{foo #@bar}" 8 font-lock-variable-name-face) commit 7950e1dd3fc1ce07cc4d6001de6c11a249b80de8 Author: Paul Eggert Date: Tue Mar 15 13:47:47 2016 -0700 Port to clang 3.7.0 on x86-64 * configure.ac: Use AS_IF so that gl_WARN_ADD’s prerequisites are not done conditionally. This helps clang, which needs -Wunknown-warning-option later when configured with warnings. * src/editfns.c (invalid_time): Now _Noreturn, since clang isn’t smart enough to figure this out on its own if warnings are enabled. (lisp_time_struct): Redo for clarity, and to pacify clang. * src/xfns.c (x_real_pos_and_offsets) [USE_XCB]: Don’t use uninitialized locals. This avoids undefined behavior and pacifies clang. diff --git a/configure.ac b/configure.ac index 075f611..d31b8df 100644 --- a/configure.ac +++ b/configure.ac @@ -877,18 +877,19 @@ AC_CACHE_CHECK([whether the compiler is clang], [emacs_cv_clang], # When compiling with GCC, prefer -isystem to -I when including system # include files, to avoid generating useless diagnostics for the files. -if test "$gl_gcc_warnings" != yes; then +AS_IF([test "$gl_gcc_warnings" != yes], + [ isystem='-I' - if test "$emacs_cv_clang" = yes - then + AS_IF([test "$emacs_cv_clang" = yes], + [ # Turn off some warnings if supported. gl_WARN_ADD([-Wno-switch]) gl_WARN_ADD([-Wno-tautological-constant-out-of-range-compare]) gl_WARN_ADD([-Wno-pointer-sign]) gl_WARN_ADD([-Wno-string-plus-int]) gl_WARN_ADD([-Wno-unknown-attributes]) - fi -else + ]) + ],[ isystem='-isystem ' # This, $nw, is the list of warnings we disable. @@ -899,10 +900,9 @@ else # Old toolkits mishandle 'const'. nw="$nw -Wwrite-strings" ;; - *) - gl_WARN_ADD([-Werror], [WERROR_CFLAGS]) - ;; esac + AS_IF([test -z "$nw"], + [gl_WARN_ADD([-Werror], [WERROR_CFLAGS])]) AC_SUBST([WERROR_CFLAGS]) nw="$nw -Wsystem-headers" # Don't let system headers trigger warnings @@ -985,7 +985,7 @@ else gl_MANYWARN_COMPLEMENT([GNULIB_WARN_CFLAGS], [$WARN_CFLAGS], [$nw]) AC_SUBST([GNULIB_WARN_CFLAGS]) -fi + ]) edit_cflags=" s,///*,/,g diff --git a/src/editfns.c b/src/editfns.c index df98223..2ac0537 100644 --- a/src/editfns.c +++ b/src/editfns.c @@ -1456,7 +1456,7 @@ time_overflow (void) error ("Specified time is not representable"); } -static void +static _Noreturn void invalid_time (void) { error ("Invalid time specification"); @@ -1848,7 +1848,9 @@ lisp_time_struct (Lisp_Object specified_time, int *plen) Lisp_Object high, low, usec, psec; struct lisp_time t; int len = disassemble_lisp_time (specified_time, &high, &low, &usec, &psec); - int val = len ? decode_time_components (high, low, usec, psec, &t, 0) : 0; + if (!len) + invalid_time (); + int val = decode_time_components (high, low, usec, psec, &t, 0); check_time_validity (val); *plen = len; return t; diff --git a/src/xfns.c b/src/xfns.c index 0a4a09e..b22af5c 100644 --- a/src/xfns.c +++ b/src/xfns.c @@ -273,7 +273,7 @@ x_real_pos_and_offsets (struct frame *f, XFree (tmp_children); #endif - if (wm_window == rootw || had_errors) + if (had_errors || wm_window == rootw) break; win = wm_window; commit 218ae59019204311101b1d6f79c86f8815b3a65b Author: Glenn Morris Date: Tue Mar 15 16:24:26 2016 -0400 * test/automated/package-test.el (package-test-signed): Tweak skip condition, for hydra. diff --git a/test/automated/package-test.el b/test/automated/package-test.el index e10946e..5580645 100644 --- a/test/automated/package-test.el +++ b/test/automated/package-test.el @@ -466,7 +466,7 @@ Must called from within a `tar-mode' buffer." (cons (format "HOME=%s" homedir) process-environment))) (epg-check-configuration (epg-configuration)) - t) + (epg-find-configuration 'OpenPGP)) (delete-directory homedir t))))) (let* ((keyring (expand-file-name "key.pub" package-test-data-dir)) (package-test-data-dir commit ba33b7c412158697f206a37ea66fab296b094e88 Author: Paul Eggert Date: Tue Mar 15 13:20:29 2016 -0700 Sync with gnulib This incorporates: 2016-03-15 time_rz: port to clang -Wunused-const-variable 2016-03-15 select: port more to Intel 2016.1.150 compiler * lib/sys_select.in.h, lib/time_rz.c: Copy from gnulib. diff --git a/lib/sys_select.in.h b/lib/sys_select.in.h index f7b260d..a557e04 100644 --- a/lib/sys_select.in.h +++ b/lib/sys_select.in.h @@ -289,12 +289,15 @@ _GL_WARN_ON_USE (pselect, "pselect is not portable - " # define select rpl_select # endif _GL_FUNCDECL_RPL (select, int, - (int, fd_set *, fd_set *, fd_set *, struct timeval *)); + (int, fd_set *restrict, fd_set *restrict, fd_set *restrict, + struct timeval *restrict)); _GL_CXXALIAS_RPL (select, int, - (int, fd_set *, fd_set *, fd_set *, struct timeval *)); + (int, fd_set *restrict, fd_set *restrict, fd_set *restrict, + struct timeval *restrict)); # else _GL_CXXALIAS_SYS (select, int, - (int, fd_set *, fd_set *, fd_set *, struct timeval *)); + (int, fd_set *restrict, fd_set *restrict, fd_set *restrict, + struct timeval *restrict)); # endif _GL_CXXALIASWARN (select); #elif @HAVE_WINSOCK2_H@ diff --git a/lib/time_rz.c b/lib/time_rz.c index bc80127..55b764e 100644 --- a/lib/time_rz.c +++ b/lib/time_rz.c @@ -47,8 +47,6 @@ enum { DEFAULT_MXFAST = 64 * sizeof (size_t) / 4 }; used. */ enum { ABBR_SIZE_MIN = DEFAULT_MXFAST - offsetof (struct tm_zone, abbrs) }; -static char const TZ[] = "TZ"; - /* Magic cookie timezone_t value, for local time. It differs from NULL and from all other timezone_t values. Only the address matters; the pointer is never dereferenced. */ @@ -205,7 +203,7 @@ tzfree (timezone_t tz) static char * getenv_TZ (void) { - return getenv (TZ); + return getenv ("TZ"); } #endif @@ -213,7 +211,7 @@ getenv_TZ (void) static int setenv_TZ (char const *tz) { - return tz ? setenv (TZ, tz, 1) : unsetenv (TZ); + return tz ? setenv ("TZ", tz, 1) : unsetenv ("TZ"); } #endif commit 38b276d162197a5ca4bd7322ff8a823c3754edb4 Author: Eli Zaretskii Date: Tue Mar 15 19:46:26 2016 +0200 Fix startup of "emacs -nw" on systems that CANNOT_DUMP * src/xdisp.c (syms_of_xdisp) : Initialize to nil. * lisp/loadup.el : Set to 'grow-only' after loading window.el. (Bug#22975) diff --git a/lisp/loadup.el b/lisp/loadup.el index bd47bed..21c64a8 100644 --- a/lisp/loadup.el +++ b/lisp/loadup.el @@ -117,6 +117,10 @@ (load "format") (load "bindings") (load "window") ; Needed here for `replace-buffer-in-windows'. +;; We are now capable of resizing the mini-windows, so give the +;; variable its advertised default value (it starts as nil, see +;; xdisp.c). +(setq resize-mini-windows 'grow-only) (setq load-source-file-function 'load-with-code-conversion) (load "files") diff --git a/src/xdisp.c b/src/xdisp.c index ce992d4..edefe32 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -31598,7 +31598,12 @@ A value of t means resize them to fit the text displayed in them. A value of `grow-only', the default, means let mini-windows grow only; they return to their normal size when the minibuffer is closed, or the echo area becomes empty. */); - Vresize_mini_windows = Qgrow_only; + /* Contrary to the doc string, we initialize this to nil, so that + loading loadup.el won't try to resize windows before loading + window.el, where some functions we need to call for this live. + We assign the 'grow-only' value right after loading window.el + during loadup. */ + Vresize_mini_windows = Qnil; DEFVAR_LISP ("blink-cursor-alist", Vblink_cursor_alist, doc: /* Alist specifying how to blink the cursor off. commit dbfbedd3d0f3afcfb811eae0e1a7b1c33fb27735 Author: Dmitry Gutov Date: Tue Mar 15 03:15:18 2016 +0200 Do not tokenize a comment before continuation as ';' * lisp/progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Account for a comment right after point. diff --git a/lisp/progmodes/ruby-mode.el b/lisp/progmodes/ruby-mode.el index 35d0cc4..edd89b3 100644 --- a/lisp/progmodes/ruby-mode.el +++ b/lisp/progmodes/ruby-mode.el @@ -443,7 +443,7 @@ It is used when `ruby-encoding-magic-comment-style' is set to `custom'." (member (save-excursion (ruby-smie--backward-token)) '("iuwu-mod" "and" "or"))) (save-excursion - (forward-comment 1) + (forward-comment (point-max)) (looking-at "&?\\.")))))) (defun ruby-smie--redundant-do-p (&optional skip) diff --git a/test/indent/ruby.rb b/test/indent/ruby.rb index 6793bfd..85f2708 100644 --- a/test/indent/ruby.rb +++ b/test/indent/ruby.rb @@ -222,7 +222,7 @@ def begin bar # https://github.com/rails/rails/blob/17f5d8e062909f1fcae25351834d8e89967b645e/activesupport/lib/active_support/time_with_zone.rb#L206 -foo +foo # comment intended to confuse the tokenizer .bar z = { commit 040362001d66fd721d3a85cddfadf8041cc23f7f Author: Dmitry Gutov Date: Tue Mar 15 03:12:19 2016 +0200 Don't misindent arguments of a method call inside continuation * lisp/progmodes/ruby-mode.el (ruby-smie-rules): Use smie-indent-virtual instead of smie-rule-parent (bug#23015). Simplify the traversal loop. diff --git a/lisp/progmodes/ruby-mode.el b/lisp/progmodes/ruby-mode.el index 1c9f0f4..35d0cc4 100644 --- a/lisp/progmodes/ruby-mode.el +++ b/lisp/progmodes/ruby-mode.el @@ -629,19 +629,13 @@ It is used when `ruby-encoding-magic-comment-style' is set to `custom'." ;; because when `.' is inside the line, the ;; additional indentation from it looks out of place. ((smie-rule-parent-p ".") - (let (smie--parent) - (save-excursion - ;; Traverse up the parents until the parent is "." at - ;; indentation, or any other token. - (while (and (let ((parent (smie-indent--parent))) - (goto-char (cadr parent)) - (save-excursion - (unless (integerp (car parent)) (forward-char -1)) - (not (ruby-smie--bosp)))) - (progn - (setq smie--parent nil) - (smie-rule-parent-p ".")))) - (smie-rule-parent)))) + ;; Traverse up the call chain until the parent is not `.', + ;; or `.' at indentation, or at eol. + (while (and (not (ruby-smie--bosp)) + (equal (nth 2 (smie-backward-sexp ".")) ".") + (not (ruby-smie--bosp))) + (forward-char -1)) + (smie-indent-virtual)) (t (smie-rule-parent)))))) (`(:after . ,(or `"(" "[" "{")) ;; FIXME: Shouldn't this be the default behavior of diff --git a/test/indent/ruby.rb b/test/indent/ruby.rb index 6ab814a..6793bfd 100644 --- a/test/indent/ruby.rb +++ b/test/indent/ruby.rb @@ -405,6 +405,17 @@ def qux a.records().map(&:b).zip( foo) +foo1 = + subject.update( + 1 + ) + +foo2 = + subject. + update( + 2 + ) + # FIXME: This is not consistent with the example below it, but this # offset only happens if the colon is at eol, which wouldn't be often. # Tokenizing `bar:' as `:bar =>' would be better, but it's hard to commit e6776f8362bbf6466c671cc8d381ba7da9e95301 Author: Stefan Monnier Date: Mon Mar 14 20:52:34 2016 -0400 * src/keyboard.c (echo_keystrokes_p): Don't test cursor_in_echo_area (read_key_sequence): Test it here, as before. (bug#22825). diff --git a/src/keyboard.c b/src/keyboard.c index 29d6d67..53030e2 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -430,10 +430,9 @@ kset_system_key_syms (struct kboard *kb, Lisp_Object val) static bool echo_keystrokes_p (void) { - return (!cursor_in_echo_area) - && (FLOATP (Vecho_keystrokes) ? XFLOAT_DATA (Vecho_keystrokes) > 0.0 - : INTEGERP (Vecho_keystrokes) ? XINT (Vecho_keystrokes) > 0 - : false); + return (FLOATP (Vecho_keystrokes) ? XFLOAT_DATA (Vecho_keystrokes) > 0.0 + : INTEGERP (Vecho_keystrokes) ? XINT (Vecho_keystrokes) > 0 + : false); } /* Add C to the echo string, without echoing it immediately. C can be @@ -8902,7 +8901,9 @@ read_key_sequence (Lisp_Object *keybuf, int bufsize, Lisp_Object prompt, if (!echo_keystrokes_p ()) current_kboard->immediate_echo = false; } - else if (echo_keystrokes_p ()) + else if (cursor_in_echo_area /* FIXME: Not sure why we test this here, + maybe we should just drop this test. */ + && echo_keystrokes_p ()) /* This doesn't put in a dash if the echo buffer is empty, so you don't always see a dash hanging out in the minibuffer. */ echo_dash (); commit 8475f3da531955cf17fecbb78719ff7f3ffe8a18 Author: Paul Eggert Date: Mon Mar 14 17:36:23 2016 -0700 ASCII-only etc/NEWS etc. * etc/NEWS, nextstep/README: Revert the recently-added curved quotes, and stick to ASCII. This typically involves replacing curved with straight quotes. Since etc/NEWS is viewed so often by UTF-8-ignorant tools, rewrite its non-ASCII text to spell out Unicode, e.g., replace ‘‒’ with ‘U+2012 (FIGURE DASH)’. diff --git a/etc/NEWS b/etc/NEWS index 8f271f5..8ce194a 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -12,7 +12,7 @@ See file HISTORY for a list of GNU Emacs versions and release dates. See files NEWS.24, NEWS.23, NEWS.22, NEWS.21, NEWS.20, NEWS.19, NEWS.18, and NEWS.1-17 for changes in older Emacs versions. -You can narrow news to a specific version by calling ‘view-emacs-news’ +You can narrow news to a specific version by calling 'view-emacs-news' with a prefix argument or by typing C-u C-h C-n. Temporary note: @@ -58,54 +58,54 @@ obstacles to maintenance and development. GC_MARK_STACK and its related symbols have been removed from the C internals. --- -** ‘configure’ now prefers gnustep-config when configuring GNUstep. +** 'configure' now prefers gnustep-config when configuring GNUstep. If gnustep-config is not available, the old heuristics are used. --- -** ‘configure’ now prefers inotify to gfile for file notification, +** 'configure' now prefers inotify to gfile for file notification, unless gfile is explicitly requested via --with-file-notification='gfile'. --- -** ‘configure’ detects the kqueue file notification library on *BSD +** 'configure' detects the kqueue file notification library on *BSD and Mac OS X machines. --- -** The configure option ‘--with-pkg-config-prog’ has been removed. -Use ‘./configure PKG_CONFIG=/full/name/of/pkg-config’ if you need to. +** The configure option '--with-pkg-config-prog' has been removed. +Use './configure PKG_CONFIG=/full/name/of/pkg-config' if you need to. --- -** The configure option ‘--with-mmdf’ has been removed. +** The configure option '--with-mmdf' has been removed. It was no longer useful, as it relied on libraries that are no longer supported, and its presence led to confusion during configuration. -This affects only the ‘movemail’ utility; Emacs itself can still +This affects only the 'movemail' utility; Emacs itself can still process MMDF-format files as before. +++ -** The configure option ‘--enable-silent-rules’ is now the default, +** The configure option '--enable-silent-rules' is now the default, and silent rules are now quieter. To get the old behavior where -‘make’ chatters a lot, configure with ‘--disable-silent-rules’ or -build with ‘make V=1’. +'make' chatters a lot, configure with '--disable-silent-rules' or +build with 'make V=1'. --- -** The configure option ‘--with-gameuser’ now allows you to specify a -group instead of a user if its argument is prefixed by ‘:’ (a colon). +** The configure option '--with-gameuser' now allows you to specify a +group instead of a user if its argument is prefixed by ':' (a colon). This will cause the game score files in ${localstatedir}/games/emacs to be owned by that group, and the helper program for updating them to -be installed setgid. The option now defaults to the ‘games’ group. +be installed setgid. The option now defaults to the 'games' group. --- -** The ‘grep-changelog’ script (and its manual page) are no longer included. +** The 'grep-changelog' script (and its manual page) are no longer included. It has no particular connection to Emacs and has not changed in years, so if you want to use it, you can always take a copy from an older Emacs. --- ** Emacs 25 comes with a new set of icons. Various resolutions are available as etc/images/icons/hicolor/*/apps/emacs.png. -The old Emacs logo icons are available as ‘emacs23.png’ in the same location. +The old Emacs logo icons are available as 'emacs23.png' in the same location. --- -** New make target ‘check-expensive’ to run additional tests. -This includes all tests which run via ‘make check’, plus additional +** New make target 'check-expensive' to run additional tests. +This includes all tests which run via "make check", plus additional tests which take more time to perform. @@ -113,14 +113,14 @@ tests which take more time to perform. +++ ** When Emacs is given a file as a command line argument and -‘initial-buffer-choice’ is non-nil, display both the file and -‘initial-buffer-choice’. When Emacs is given more than one file and -‘initial-buffer-choice’ is non-nil, show ‘initial-buffer-choice’ +'initial-buffer-choice' is non-nil, display both the file and +'initial-buffer-choice'. When Emacs is given more than one file and +'initial-buffer-choice' is non-nil, show 'initial-buffer-choice' and *Buffer List*. This makes Emacs convenient to use from the -command line when ‘initial-buffer-choice’ is non-nil. +command line when 'initial-buffer-choice' is non-nil. +++ -** The value of ‘initial-scratch-message’ is now treated as a doc string +** The value of 'initial-scratch-message' is now treated as a doc string and can contain escape sequences for command keys, quotes, and the like. @@ -129,61 +129,61 @@ and can contain escape sequences for command keys, quotes, and the like. +++ ** Xwidgets: a new feature for embedding native widgets inside Emacs buffers. If you have gtk3 and webkitgtk3 installed, and Emacs was built with -xwidget support, you can access the embedded webkit browser with ‘M-x -xwidget-webkit-browse-url’. This opens a new buffer with the embedded -browser. The buffer will have a new mode, ‘xwidget-webkit-mode’ -(similar to ‘image-mode’), which supports the webkit widget. +xwidget support, you can access the embedded webkit browser with 'M-x +xwidget-webkit-browse-url'. This opens a new buffer with the embedded +browser. The buffer will have a new mode, 'xwidget-webkit-mode' +(similar to 'image-mode'), which supports the webkit widget. +++ -*** New functions for xwidget-webkit mode ‘xwidget-webkit-insert-string’, -‘xwidget-webkit-adjust-size-dispatch’, ‘xwidget-webkit-back’, -‘xwidget-webkit-browse-url’, ‘xwidget-webkit-reload’, -‘xwidget-webkit-current-url’, ‘xwidget-webkit-scroll-backward’, -‘xwidget-webkit-scroll-forward’, ‘xwidget-webkit-scroll-down’, -‘xwidget-webkit-scroll-up’. +*** New functions for xwidget-webkit mode 'xwidget-webkit-insert-string', +'xwidget-webkit-adjust-size-dispatch', 'xwidget-webkit-back', +'xwidget-webkit-browse-url', 'xwidget-webkit-reload', +'xwidget-webkit-current-url', 'xwidget-webkit-scroll-backward', +'xwidget-webkit-scroll-forward', 'xwidget-webkit-scroll-down', +'xwidget-webkit-scroll-up'. +++ ** Emacs can now load shared/dynamic libraries (modules). A dynamic Emacs module is a shared library that provides additional functionality for use in Emacs Lisp programs, just like a package -written in Emacs Lisp would. The functions ‘load’, ‘require’, -‘load-file’, etc. were extended to load such modules, as they do with -Emacs Lisp packages. The new variable ‘module-file-suffix’ holds the -system-dependent value of the file-name extension (‘.so’ on Posix +written in Emacs Lisp would. The functions 'load', 'require', +'load-file', etc. were extended to load such modules, as they do with +Emacs Lisp packages. The new variable 'module-file-suffix' holds the +system-dependent value of the file-name extension ('.so' on Posix hosts) of the module files. A module should export a C-callable function named -‘emacs_module_init’, which Emacs will call as part of the call to -‘load’ or ‘require’ which loads the module. It should also export a -symbol named ‘plugin_is_GPL_compatible’ to indicate that its code is +'emacs_module_init', which Emacs will call as part of the call to +'load' or 'require' which loads the module. It should also export a +symbol named 'plugin_is_GPL_compatible' to indicate that its code is released under the GPL or compatible license; Emacs will refuse to -load modules that don’t export such a symbol. +load modules that don't export such a symbol. If a module needs to call Emacs functions, it should do so through the -API defined and documented in the header file ‘emacs-module.h’. Note +API defined and documented in the header file 'emacs-module.h'. Note that any module that provides Lisp-callable functions will have to use -Emacs functions such as ‘fset’ and ‘funcall’, in order to register its +Emacs functions such as 'fset' and 'funcall', in order to register its functions with the Emacs Lisp interpreter. -Modules can create ‘user-ptr’ Lisp objects that embed pointers to C +Modules can create 'user-ptr' Lisp objects that embed pointers to C structs defined by the module. This is useful for keeping around complex data structures created by a module, to be passed back to the -module’s functions. User-ptr objects can also have associated -“finalizers” -- functions to be run when the object is GC’ed; this is +module's functions. User-ptr objects can also have associated +"finalizers" -- functions to be run when the object is GC'ed; this is useful for freeing any resources allocated for the underlying data structure, such as memory, open file descriptors, etc. A new -predicate ‘user-ptrp’ returns non-nil if its argument is a ‘user-ptr’ +predicate 'user-ptrp' returns non-nil if its argument is a 'user-ptr' object. Loadable modules in Emacs are an experimental feature, and subject to change in future releases. For that reason, their support is disabled -by default, and must be enabled by using the ‘--with-modules’ option +by default, and must be enabled by using the '--with-modules' option at configure time. +++ ** Network security (TLS/SSL certificate validity and the like) is added via the new Network Security Manager (NSM) and controlled via -the ‘network-security-level’ variable. +the 'network-security-level' variable. +++ ** C-h l now also lists the commands that were run. @@ -193,50 +193,50 @@ the ‘network-security-level’ variable. and x-select-enable-primary is renamed select-enable-primary. Additionally they both now apply to all systems (OSX, GNUstep, Windows, you name it), with the proviso that on some systems (e.g. Windows) -select-enable-primary is ineffective since the system doesn’t +select-enable-primary is ineffective since the system doesn't have the equivalent of a primary selection. +++ -** New option ‘switch-to-buffer-in-dedicated-window’ allows you to -customize how ‘switch-to-buffer’ proceeds interactively when the +** New option 'switch-to-buffer-in-dedicated-window' allows you to +customize how 'switch-to-buffer' proceeds interactively when the selected window is strongly dedicated to its buffer. +++ -** The option ‘even-window-heights’ has been renamed to -‘even-window-sizes’ and now handles window widths as well. +** The option 'even-window-heights' has been renamed to +'even-window-sizes' and now handles window widths as well. +++ ** terpri gets an optional arg ENSURE to conditionally output a newline. +++ -** ‘insert-register’ now leaves point after the inserted text +** 'insert-register' now leaves point after the inserted text when called interactively. A prefix argument toggles this behavior. +++ -** The new variable ‘term-file-aliases’ replaces some files from lisp/term. -The function ‘tty-run-terminal-initialization’ consults this variable +** The new variable 'term-file-aliases' replaces some files from lisp/term. +The function 'tty-run-terminal-initialization' consults this variable when deciding what terminal-specific initialization code to run. --- -** New variable ‘system-configuration-features’, listing some of the +** New variable 'system-configuration-features', listing some of the main features that Emacs was compiled with. This is mainly intended for use in Emacs bug reports. +++ ** A password is now hidden also when typed in batch mode. Another -hiding character but the default ‘.’ can be used by let-binding the -variable ‘read-hide-char’. +hiding character but the default '.' can be used by let-binding the +variable 'read-hide-char'. +++ ** The Emacs pseudo-random number generator can be securely seeded. On system where Emacs can access the system entropy or some other -cryptographically secure random stream, it now uses that when ‘random’ -is called with its argument ‘t’. This allows cryptographically strong +cryptographically secure random stream, it now uses that when 'random' +is called with its argument 't'. This allows cryptographically strong random values; in particular, the Emacs server now uses this facility to produce its authentication key. --- -** New input methods: ‘tamil-dvorak’ and ‘programmer-dvorak’. +** New input methods: 'tamil-dvorak' and 'programmer-dvorak'. * Editing Changes in Emacs 25.1 @@ -249,17 +249,17 @@ to produce its authentication key. +++ *** Successive single-char deletions are collapsed in the undo-log just like successive char insertions. Which commands invoke this behavior is -controlled by the new ‘undo-auto-amalgamate’ function. See the node -‘‘Undo’’ in the ELisp manual for more details. +controlled by the new 'undo-auto-amalgamate' function. See the node +"Undo" in the ELisp manual for more details. +++ -*** The heuristic used to insert ‘undo-boundary’ after each command +*** The heuristic used to insert 'undo-boundary' after each command has changed, so that if a command causes changes in more than just the -current buffer, Emacs now calls ‘undo-boundary’ in every buffer +current buffer, Emacs now calls 'undo-boundary' in every buffer affected by the command. +++ -** New command ‘comment-line’ bound to ‘C-x C-;’. +** New command 'comment-line' bound to 'C-x C-;'. ** New and improved facilities for inserting Unicode characters @@ -267,18 +267,19 @@ affected by the command. *** Unicode names entered via C-x 8 RET now use substring completion by default. +++ -*** C-x 8 now has shorthands for these chars: ‐ ‑ ‒ – — ― ‘ ’ “ ” † ‡ • ′ ″ -€ № ← → ↔ − ≈ ≠ ≤ ≥. As before, you can type C-x 8 C-h to list shorthands. +*** C-x 8 now has shorthands for several chars, such as U+2010 +(HYPHEN), U+2011 (NON-BREAKING HYPHEN), and U+2012 (FIGURE DASH). As +before, you can type C-x 8 C-h to list shorthands. +++ -*** New minor mode electric-quote-mode for quoting ‘like this’ and “like this” -as you type. See also the new variable ‘text-quoting-style’. +*** New minor mode electric-quote-mode for using curved quotes as you +type. See also the new variable 'text-quoting-style'. --- ** New minor mode global-eldoc-mode is enabled by default. --- -** Emacs now uses “bracketed paste mode” on text terminals that support it. +** Emacs now uses "bracketed paste mode" on text terminals that support it. Bracketed paste mode causes text terminals to wrap pasted text in special escape sequences that allow Emacs to tell the difference between text you type and text you paste from other applications. Emacs then @@ -300,31 +301,31 @@ Bidirectional Parentheses Algorithm (BPA) specified by these Unicode standards. +++ -** You can access ‘mouse-buffer-menu’ (C-down-mouse-1) using C-f10. +** You can access 'mouse-buffer-menu' (C-down-mouse-1) using C-f10. +++ -** New buffer-local ‘electric-pair-local-mode’. +** New buffer-local 'electric-pair-local-mode'. +++ -** New variable ‘fast-but-imprecise-scrolling’ inhibits +** New variable 'fast-but-imprecise-scrolling' inhibits fontification during full screen scrolling operations, giving less hesitant operation during auto-repeat of C-v, M-v at the cost of possible inaccuracies in the end position. +++ -** New documentation command ‘describe-symbol’. -Works for functions, variables, faces, etc. It is bound to ‘C-h o’ by +** New documentation command 'describe-symbol'. +Works for functions, variables, faces, etc. It is bound to 'C-h o' by default. +++ -** New function ‘custom-prompt-customize-unsaved-options’ checks for +** New function 'custom-prompt-customize-unsaved-options' checks for unsaved customizations and prompts user to customize (if found). It -is intended for adding to ‘kill-emacs-query-functions’. +is intended for adding to 'kill-emacs-query-functions'. +++ -** The old ‘C-x w’ bindings in hi-lock-mode are officially deprecated -in favor of the global ‘M-s h’ bindings introduced in Emacs-23.1. -They’ll disappear soon. +** The old 'C-x w' bindings in hi-lock-mode are officially deprecated +in favor of the global 'M-s h' bindings introduced in Emacs-23.1. +They'll disappear soon. * Changes in Specialized Modes and Packages in Emacs 25.1 @@ -332,14 +333,14 @@ They’ll disappear soon. ** Checkdoc +++ -*** New command ‘checkdoc-package-keywords’ checks if the +*** New command 'checkdoc-package-keywords' checks if the current package keywords are recognized. Set the new option -‘checkdoc-package-keywords-flag’ to non-nil to make -‘checkdoc-current-buffer’ call this function automatically. +'checkdoc-package-keywords-flag' to non-nil to make +'checkdoc-current-buffer' call this function automatically. +++ -*** New function ‘checkdoc-file’ checks for style errors. -It’s meant for use together with ‘compile’: +*** New function 'checkdoc-file' checks for style errors. +It's meant for use together with 'compile': emacs -batch --eval "(checkdoc-file \"subr.el\")" ** Desktop @@ -354,39 +355,39 @@ recommended to do this as soon as you have firmly upgraded to Emacs to version 206, you can do this with C-u C-u M-x desktop-save. +++ -** New function ‘bookmark-set-no-overwrite’ bound to C-x r M. +** New function 'bookmark-set-no-overwrite' bound to C-x r M. It raises an error if a bookmark of that name already exists, -unlike ‘bookmark-set’ which silently updates an existing bookmark. +unlike 'bookmark-set' which silently updates an existing bookmark. ** Gnus +++ -*** New user options ‘mm-html-inhibit-images’ and ‘mm-html-blocked-images’ +*** New user options 'mm-html-inhibit-images' and 'mm-html-blocked-images' now control how mm-* functions fetch and display images in an HTML -message. Gnus still uses ‘gnus-inhibit-images’ and ‘gnus-blocked-images’ +message. Gnus still uses 'gnus-inhibit-images' and 'gnus-blocked-images' for that purpose, i.e., binds mm-html- variables with those gnus- variables, but other packages do not have to bind gnus- variables now. --- -*** ‘mm-inline-text-html-with-images’ has been removed. -Use ‘mm-html-inhibit-images’ instead. Note that the value is opposite +*** 'mm-inline-text-html-with-images' has been removed. +Use 'mm-html-inhibit-images' instead. Note that the value is opposite in meaning. ** IMAP --- -*** ‘imap-ssl-program’ has been removed, and imap.el uses the internal +*** 'imap-ssl-program' has been removed, and imap.el uses the internal GnuTLS encryption functions if possible. ** JSON --- -*** ‘json-pretty-print’ and ‘json-pretty-print-buffer’ now maintain +*** 'json-pretty-print' and 'json-pretty-print-buffer' now maintain the ordering of object keys by default. --- -*** New commands ‘json-pretty-print-ordered’ and -‘json-pretty-print-buffer-ordered’ pretty prints JSON objects with +*** New commands 'json-pretty-print-ordered' and +'json-pretty-print-buffer-ordered' pretty prints JSON objects with object keys sorted alphabetically. +++ @@ -396,29 +397,29 @@ programming languages in the same buffer, like literate programming environments or ANTLR programs with embedded Python code. A major mode can provide indentation context for a sub-mode through -the ‘prog-indentation-context’ variable. To support this, modes that -provide indentation should use ‘prog-widen’ instead of ‘widen’ and -‘prog-first-column’ instead of a literal zero. See the node -“Mode-Specific Indent” in the ELisp manual for more details. +the 'prog-indentation-context' variable. To support this, modes that +provide indentation should use 'prog-widen' instead of 'widen' and +'prog-first-column' instead of a literal zero. See the node +"Mode-Specific Indent" in the ELisp manual for more details. ** Prettify Symbols mode +++ *** Prettify Symbols mode supports custom composition predicates. By -overriding the default ‘prettify-symbols-compose-predicate’, modes can +overriding the default 'prettify-symbols-compose-predicate', modes can specify in which contexts a symbol may be displayed as some Unicode -character. ‘prettify-symbols-default-compose-p’ is the default which +character. 'prettify-symbols-default-compose-p' is the default which is suitable for most programming languages such as C or Lisp (but not (La)TeX). +++ *** Symbols can be unprettified while point is inside them. -New variable ‘prettify-symbols-unprettify-at-point’ configures this. +New variable 'prettify-symbols-unprettify-at-point' configures this. ** Enhanced xterm support --- -*** The new variable ‘xterm-screen-extra-capabilities’ for configuring xterm. +*** The new variable 'xterm-screen-extra-capabilities' for configuring xterm. This variable tells Emacs which advanced capabilities are available in the xterm terminal emulator used to display Emacs text-mode frames. The default is to check each capability, and use it if available. @@ -428,32 +429,32 @@ its NEWS.) --- *** Killing text now also sets the CLIPBOARD/PRIMARY selection in the surrounding GUI (using the OSC-52 escape sequence). This only works -if your xterm supports it and enables the ‘allowWindowOps’ options (disabled +if your xterm supports it and enables the 'allowWindowOps' options (disabled by default at least in Debian, for security reasons). Similarly, you can yank the CLIPBOARD/PRIMARY selection (using the OSC-52 escape sequence) if your xterm has the feature enabled but for that you -additionally need to add ‘getSelection’ to ‘xterm-extra-capabilities’. +additionally need to add 'getSelection' to 'xterm-extra-capabilities'. +++ -*** ‘xterm-mouse-mode’ now supports mouse-tracking (if your xterm supports it). +*** 'xterm-mouse-mode' now supports mouse-tracking (if your xterm supports it). --- -** The way to turn on and off ‘save-place’ mode has changed. +** The way to turn on and off 'save-place' mode has changed. It is no longer sufficient to load the saveplace library and set -‘save-place’ non-nil. Instead, use the two new minor modes: -‘save-place-mode’ turns on saving last place in every file, and -‘save-place-local-mode’ does that only for the file in whose buffer it -is invoked. The ‘save-place’ variable is now an obsolete alias for -‘save-place-mode’, which replaces it, and ‘toggle-save-place’ is an -obsolete alias for the new ‘save-place-local-mode’ command. +'save-place' non-nil. Instead, use the two new minor modes: +'save-place-mode' turns on saving last place in every file, and +'save-place-local-mode' does that only for the file in whose buffer it +is invoked. The 'save-place' variable is now an obsolete alias for +'save-place-mode', which replaces it, and 'toggle-save-place' is an +obsolete alias for the new 'save-place-local-mode' command. ** ERC +++ *** ERC can now hide message types by network or channel. -‘erc-hide-list’ will hide all messages of the specified type, while -‘erc-network-hide-list’ and ‘erc-channel-hide-list’ will only hide the +'erc-hide-list' will hide all messages of the specified type, while +'erc-network-hide-list' and 'erc-channel-hide-list' will only hide the specified message types for the respective specified targets. --- @@ -468,14 +469,14 @@ being made case-sensitive in Emacs 24.2. --- *** New commands, key binds, and menu items. -**** ‘<’ and ‘>’ for navigating previous and next tracks in playlist +**** '<' and '>' for navigating previous and next tracks in playlist -**** New play/pause command ‘mpc-toggle-play’ bound to ‘s’ +**** New play/pause command 'mpc-toggle-play' bound to 's' -**** ‘g’ bound to new command ‘mpc-seek-current’ will navigate current +**** 'g' bound to new command 'mpc-seek-current' will navigate current track. -**** New commands ‘mpc-toggle-{consume,repeat,single,shuffle}’ for +**** New commands 'mpc-toggle-{consume,repeat,single,shuffle}' for toggling playback modes. --- @@ -493,7 +494,7 @@ MPD supports the XDG base directory specification since version 0.17.6. ** Midnight-mode --- -*** ‘midnight-mode’ is now a proper minor mode. +*** 'midnight-mode' is now a proper minor mode. --- *** clean-buffer-*-regexps can now specify buffers via predicate functions. @@ -501,24 +502,24 @@ MPD supports the XDG base directory specification since version 0.17.6. ** package.el +++ -*** New “external” package status. -An external package is any installed package that’s not built-in and -not from ‘package-user-dir’, which usually means it’s from an entry in -‘package-directory-list’. They are treated much like built-in +*** New "external" package status. +An external package is any installed package that's not built-in and +not from 'package-user-dir', which usually means it's from an entry in +'package-directory-list'. They are treated much like built-in packages, in that they cannot be deleted through the package menu and are not considered for upgrades. The effect is that a user can manually place a specific version of a -package inside ‘package-directory-list’ and the package menu will +package inside 'package-directory-list' and the package menu will always respect that. +++ *** If a package is available on multiple archives and one has higher -priority (as per ‘package-archive-priorities’) only that one is -listed. This can be configured with ‘package-menu-hide-low-priority’. +priority (as per 'package-archive-priorities') only that one is +listed. This can be configured with 'package-menu-hide-low-priority'. +++ -*** ‘package-menu-toggle-hiding’ now toggles the hiding of packages. +*** 'package-menu-toggle-hiding' now toggles the hiding of packages. This includes the above-mentioned low-priority packages, as well as available packages whose version is lower than the currently installed version (which were previously impossible to display). @@ -526,8 +527,8 @@ This allows users to downgrade a package if a lower version is available. --- -*** When filtering the package menu, keywords starting with ‘arc:’ or -‘status:’ represent package archive or status, respectively, instead +*** When filtering the package menu, keywords starting with "arc:" or +"status:" represent package archive or status, respectively, instead of actual keywords. --- @@ -536,52 +537,52 @@ ASYNC argument. If it is non-nil, package.el performs the download(s) asynchronously. --- -*** New variable ‘package-menu-async’ controls whether the +*** New variable 'package-menu-async' controls whether the package-menu uses asynchronous downloads. --- -*** ‘package-install-from-buffer’ and ‘package-install-file’ work on directories. +*** 'package-install-from-buffer' and 'package-install-file' work on directories. This follows the same rules as installing from a .tar file, except the -pkg file is optional. --- *** Packages which are dependencies of other packages cannot be deleted. -The FORCE argument to ‘package-delete’ overrides this. +The FORCE argument to 'package-delete' overrides this. --- -*** New custom variable ‘package-selected-packages’ tracks packages +*** New custom variable 'package-selected-packages' tracks packages which were installed by the user (as opposed to installed as dependencies). This variable can also be manually customized. --- -*** New command ‘package-install-selected-packages’ installs all -packages from ‘package-selected-packages’ which are currently missing. +*** New command 'package-install-selected-packages' installs all +packages from 'package-selected-packages' which are currently missing. --- -*** ‘package-install’ function now takes a DONT-SELECT argument. If +*** 'package-install' function now takes a DONT-SELECT argument. If this function is called interactively or if DONT-SELECT is nil, add the -package being installed to ‘package-selected-packages’. +package being installed to 'package-selected-packages'. --- -*** New command ‘package-autoremove’ removes all packages which were +*** New command 'package-autoremove' removes all packages which were installed strictly as dependencies but are no longer needed. +++ ** Shell -When you invoke ‘shell’ interactively, the *shell* buffer will now +When you invoke 'shell' interactively, the *shell* buffer will now display in a new window. However, you can customize this behavior via -the ‘display-buffer-alist’ variable. For example, to get +the 'display-buffer-alist' variable. For example, to get the old behavior -- *shell* buffer displays in current window -- use (add-to-list 'display-buffer-alist '("^\\*shell\\*$" . (display-buffer-same-window))). ** EIEIO +++ -*** The ‘:protection’ slot option is not obeyed any more. +*** The ':protection' slot option is not obeyed any more. +++ -*** The ‘newname’ argument to constructors is optional&deprecated. -If you need your objects to be named, do it by inheriting from ‘eieio-named’. +*** The 'newname' argument to constructors is optional&deprecated. +If you need your objects to be named, do it by inheriting from 'eieio-named'. +++ *** The -list-p and -child-p functions are declared obsolete. +++ @@ -592,18 +593,18 @@ If you need your objects to be named, do it by inheriting from ‘eieio-named’ *** defgeneric and defmethod are declared obsolete. Use the equivalent facilities from cl-generic.el instead. +++ -*** ‘constructor’ is now an obsolete alias for ‘make-instance’. ---- ‘pcase’ accepts a new UPattern ‘eieio’. +*** 'constructor' is now an obsolete alias for 'make-instance'. +--- 'pcase' accepts a new UPattern 'eieio'. ** ido +++ -*** New command ‘ido-bury-buffer-at-head’ bound to C-S-b -Bury the buffer at the head of ‘ido-matches’, analogous to how C-k +*** New command 'ido-bury-buffer-at-head' bound to C-S-b +Bury the buffer at the head of 'ido-matches', analogous to how C-k kills the buffer at head. --- -*** A prefix argument to ‘ido-restrict-to-matches’ will reverse its +*** A prefix argument to 'ido-restrict-to-matches' will reverse its meaning, and the list is restricted to those elements that do not match the current input. @@ -611,18 +612,18 @@ match the current input. +++ *** You can use and arrow keys to move through history by lines. -The new commands ‘next-line-or-history-element’ and -‘previous-line-or-history-element’, bound to and in the +The new commands 'next-line-or-history-element' and +'previous-line-or-history-element', bound to and in the minibuffer, allow by-line movement through minibuffer history, similarly to an ordinary buffer. Only when point moves over the bottom/top of the minibuffer it goes to the next/previous history -element. ‘M-p’ and ‘M-n’ still move directly to previous/next history +element. 'M-p' and 'M-n' still move directly to previous/next history item as before. ** Search and Replace +++ -*** ‘isearch’ and ‘query-replace’ can now perform character folding in matches. +*** 'isearch' and 'query-replace' can now perform character folding in matches. This is analogous to case folding, but instead of disregarding case variants, it disregards wider classes of distinctions between similar characters. (Case folding is a special case of character folding.) @@ -630,47 +631,48 @@ This means many characters in the search string will match entire groups of characters instead of just themselves. For instance, the ASCII double quote character " will match all -variants of double quotes (like “ and ”), and the letter a will match -all of its accented cousins, even those composed of multiple -characters, as well as many other symbols like ℀, ℁, ⒜, and ⓐ. +variants of double quotes, and the letter 'a' will match all of its +accented cousins, even those composed of multiple characters, as well +as many other symbols like U+249C (PARENTHESIZED LATIN SMALL LETTER +A). -Character folding is enabled by customizing ‘search-default-mode’ to -the value ‘character-fold-to-regexp’. You can also toggle character -folding in the middle of a search by typing ‘M-s '’. +Character folding is enabled by customizing 'search-default-mode' to +the value 'character-fold-to-regexp'. You can also toggle character +folding in the middle of a search by typing 'M-s ''. -‘query-replace’ honors character folding if the new variable -‘replace-character-fold’ is customized to a non-nil value. +'query-replace' honors character folding if the new variable +'replace-character-fold' is customized to a non-nil value. +++ -*** New user option ‘search-default-mode’. +*** New user option 'search-default-mode'. This option specifies the default mode for Isearch. The default value, nil specifies that Isearch does literal searches (however, -‘case-fold-search’ and ‘isearch-lax-whitespace’ may still be applied, +'case-fold-search' and 'isearch-lax-whitespace' may still be applied, as in previous Emacs versions). +++ -*** New function ‘character-fold-to-regexp’ can be used +*** New function 'character-fold-to-regexp' can be used by searching commands to produce a regexp matching anything that character-folds into STRING. +++ *** The new M-s M-w key binding uses eww to search the web for the text in the region. The search engine to use for this is specified by -the customizable variable ‘eww-search-prefix’. +the customizable variable 'eww-search-prefix'. +++ *** Query-replace history is enhanced. When query-replace reads the FROM string from the minibuffer, typing -‘M-p’ will now show previous replacements as ‘FROM SEP TO’, where FROM +'M-p' will now show previous replacements as "FROM SEP TO", where FROM and TO are the original text and its replacement, and SEP is an arrow -string defined by the new variable ‘query-replace-from-to-separator’. -To select a prior replacement, type ‘M-p’ until the desired +string defined by the new variable 'query-replace-from-to-separator'. +To select a prior replacement, type 'M-p' until the desired replacement appears in the minibuffer, and then exit the minibuffer by typing RET. ** Calc +++ -*** If ‘quick-calc’ is called with a prefix argument, insert the +*** If 'quick-calc' is called with a prefix argument, insert the result of the calculation into the current buffer. +++ @@ -681,18 +683,19 @@ instrumented function. ** ElDoc +++ -*** New minor mode ‘global-eldoc-mode’ -It is turned on by default, and affects ‘*scratch*’ and other buffers +*** New minor mode 'global-eldoc-mode' +It is turned on by default, and affects '*scratch*' and other buffers whose major mode supports Emacs Lisp. --- -*** ‘eldoc-documentation-function’ now defaults to ‘ignore’ +*** 'eldoc-documentation-function' now defaults to 'ignore' --- -*** ‘describe-char-eldoc’ displays information about character at point, -and can be used as a default value of ‘eldoc-documentation-function’. It is -useful when, for example, one needs to distinguish various spaces (e.g. ] [, -] [, ] [, etc.) while using mono-spaced font. +*** 'describe-char-eldoc' displays information about character at point, +and can be used as a default value of 'eldoc-documentation-function'. It is +useful when, for example, one needs to distinguish various spaces - e.g., +U+00A0 (NO-BREAK SPACE), U+2002 (EN SPACE), and U+2009 (THIN SPACE) - while +using mono-spaced font. ** eww @@ -700,17 +703,17 @@ useful when, for example, one needs to distinguish various spaces (e.g. ] [, *** HTML can now be rendered using variable-width fonts. +++ -*** A new command ‘F’ (‘eww-toggle-fonts’) can be used to toggle +*** A new command 'F' ('eww-toggle-fonts') can be used to toggle whether to use variable-pitch fonts or not. The user can also -customize the ‘shr-use-fonts’ variable. +customize the 'shr-use-fonts' variable. +++ -*** A new command ‘R’ (‘eww-readable’) will try do identify the main +*** A new command 'R' ('eww-readable') will try do identify the main textual parts of a web page and display only that, leaving menus and the like off the page. +++ -*** A new command ‘D’ (‘eww-toggle-paragraph-direction’) allows you to +*** A new command 'D' ('eww-toggle-paragraph-direction') allows you to toggle the paragraph direction between left-to-right and right-to-left. --- @@ -722,11 +725,11 @@ buffers you want to keep separate. pages visited) is now preserved in the desktop file. +++ -*** ‘eww-after-render-hook’ is now called after eww has rendered +*** 'eww-after-render-hook' is now called after eww has rendered the data in the buffer. --- -*** The ‘eww-reload’ command now takes a prefix to not reload via +*** The 'eww-reload' command now takes a prefix to not reload via the net, but just use the local copy of the HTML. +++ @@ -736,10 +739,10 @@ interact with this DOM. See the Emacs Lisp manual for interface details. +++ -*** ‘mailcap-mime-data’ is now consulted when displaying PDF files. +*** 'mailcap-mime-data' is now consulted when displaying PDF files. +++ -*** The new ‘S’ command will list all eww buffers, and allow managing +*** The new 'S' command will list all eww buffers, and allow managing them. --- @@ -756,19 +759,19 @@ transformed into multipart/related messages before sending. ** In Show Paren Mode, a parenthesis can be highlighted when point stands inside it, and certain parens can be highlighted when point is at BOL or EOL, or in whitespace there. To enable these, customize, -respectively, ‘show-paren-when-point-inside-paren’ or -‘show-paren-when-point-in-periphery’. +respectively, 'show-paren-when-point-inside-paren' or +'show-paren-when-point-in-periphery'. --- ** If gpg2 exists on the system, it is now used as the default value -of ‘epg-gpg-program’ (instead of gpg). +of 'epg-gpg-program' (instead of gpg). ** Lisp mode --- -*** Strings after ‘:documentation’ are highlighted as docstrings. +*** Strings after ':documentation' are highlighted as docstrings. This enhances Lisp mode fontification to handle documentation of the -form ‘(:documentation "the doc string")’ used in Common Lisp code for +form '(:documentation "the doc string")' used in Common Lisp code for CLOS class and slot documentation. ** Rectangle editing @@ -778,91 +781,91 @@ CLOS class and slot documentation. +++ *** C-x C-x in rectangle-mark-mode now cycles through the four corners. -*** ‘string-rectangle’ provides on-the-fly preview of the result. +*** 'string-rectangle' provides on-the-fly preview of the result. +++ -** New font-lock functions ‘font-lock-ensure’ and ‘font-lock-flush’. -These should be used in preference to ‘font-lock-fontify-buffer’ when +** New font-lock functions 'font-lock-ensure' and 'font-lock-flush'. +These should be used in preference to 'font-lock-fontify-buffer' when called from Lisp. --- -** Macro ‘minibuffer-with-setup-hook’ can optionally append a function -to ‘minibuffer-setup-hook’. +** Macro 'minibuffer-with-setup-hook' can optionally append a function +to 'minibuffer-setup-hook'. -If the first argument of the macro is of the form ‘(:append FUN)’, -then FUN will be appended to ‘minibuffer-setup-hook’, instead of +If the first argument of the macro is of the form '(:append FUN)', +then FUN will be appended to 'minibuffer-setup-hook', instead of prepending it. ** cl-lib +++ -*** New functions ‘cl-fresh-line’, ‘cl-digit-char-p’, and ‘cl-parse-integer’. +*** New functions 'cl-fresh-line', 'cl-digit-char-p', and 'cl-parse-integer'. --- -*** ‘pcase’ accepts the new UPattern ‘cl-struct’. +*** 'pcase' accepts the new UPattern 'cl-struct'. ** Calendar and diary +++ -*** The default ‘diary-file’ is now located in .emacs.d. +*** The default 'diary-file' is now located in .emacs.d. +++ *** New commands to insert diary entries with Chinese dates: -‘diary-chinese-insert-anniversary-entry’ ‘diary-chinese-insert-entry’ -‘diary-chinese-insert-monthly-entry’, ‘diary-chinese-insert-yearly-entry’. +'diary-chinese-insert-anniversary-entry' 'diary-chinese-insert-entry' +'diary-chinese-insert-monthly-entry', 'diary-chinese-insert-yearly-entry'. +++ *** The calendar can now list and mark diary entries with Chinese dates. -See ‘diary-chinese-list-entries’ and ‘diary-chinese-mark-entries’. +See 'diary-chinese-list-entries' and 'diary-chinese-mark-entries'. --- -*** The option ‘calendar-mode-line-format’ can now be nil, +*** The option 'calendar-mode-line-format' can now be nil, which means to do nothing special with the mode line in calendars. +++ -*** New option ‘calendar-weekend-days’. +*** New option 'calendar-weekend-days'. The option customizes which day headers receive the -‘calendar-weekend-header’ face. +'calendar-weekend-header' face. --- -*** New optional args N and STRING for ‘holiday-greek-orthodox-easter’. +*** New optional args N and STRING for 'holiday-greek-orthodox-easter'. --- *** Many items obsolete since at least version 23.1 have been removed. The majority were function/variable/face aliases, too numerous to list here. The remainder were: -**** Functions ‘calendar-one-frame-setup’, ‘calendar-only-one-frame-setup’, -‘calendar-two-frame-setup’, ‘european-calendar’, ‘american-calendar’. +**** Functions 'calendar-one-frame-setup', 'calendar-only-one-frame-setup', +'calendar-two-frame-setup', 'european-calendar', 'american-calendar'. -**** Hooks ‘cal-menu-load-hook’, ‘cal-x-load-hook’. +**** Hooks 'cal-menu-load-hook', 'cal-x-load-hook'. -**** Macro ‘calendar-for-loop’. +**** Macro 'calendar-for-loop'. -**** Variables ‘european-calendar-style’, ‘diary-face’, ‘hebrew-holidays-{1,4}’. +**** Variables 'european-calendar-style', 'diary-face', 'hebrew-holidays-{1,4}'. -**** The nil and list forms of ‘diary-display-function’. +**** The nil and list forms of 'diary-display-function'. +++ -** New ERT function ‘ert-summarize-tests-batch-and-exit’. +** New ERT function 'ert-summarize-tests-batch-and-exit'. If the output of ERT tests in batch mode execution can be saved to a log file, then it can be passed as an argument to the above function to produce a neat summary. --- -** New js.el option ‘js-indent-first-init’. +** New js.el option 'js-indent-first-init'. ** Info --- ** Info mode now displays symbol names in fixed-pitch font. -If you want to get the old behavior back, customize the ‘Info-quoted’ +If you want to get the old behavior back, customize the 'Info-quoted' face to use the same definitions as the default face. --- -*** ‘Info-fontify-maximum-menu-size’ can be t for no limit. +*** 'Info-fontify-maximum-menu-size' can be t for no limit. +++ -*** ‘info-display-manual’ can now be given a prefix argument which (any +*** 'info-display-manual' can now be given a prefix argument which (any non-nil value) directs the command to limit the completion alternatives to currently visited manuals. @@ -872,7 +875,7 @@ alternatives to currently visited manuals. ** Rmail +++ -*** The Rmail commands ‘d’, ‘C-d’ and ‘u’ take optional repeat counts +*** The Rmail commands 'd', 'C-d' and 'u' take optional repeat counts to delete or undelete multiple messages. +++ @@ -880,61 +883,61 @@ to delete or undelete multiple messages. libxml2 or if you have the Lynx browser installed. By default, Rmail will display the HTML version of a mail message that has both HTML and plain text parts, if display of HTML email is possible; customize the -‘rmail-mime-prefer-html’ option to ‘nil’ if you don’t want that. +'rmail-mime-prefer-html' option to 'nil' if you don't want that. +++ *** In the commands that make summaries by subject, recipients, or senders, you can no longer use commas to separate regular expressions. +++ -** SES now supports local printer functions; see ‘ses-define-local-printer’. +** SES now supports local printer functions; see 'ses-define-local-printer'. ** Shell-script Mode --- -*** In sh-mode you can now use ‘sh-shell’ as a file-local variable to +*** In sh-mode you can now use 'sh-shell' as a file-local variable to specify the type of shell in use (bash, csh, etc). --- -*** New value ‘always’ for ‘sh-indent-after-continuation’. -This provides old-style (“dumb”) indentation of continued lines. -See the doc string of ‘sh-indent-after-continuation’ for details. +*** New value 'always' for 'sh-indent-after-continuation'. +This provides old-style ("dumb") indentation of continued lines. +See the doc string of 'sh-indent-after-continuation' for details. ** TLS --- *** Fatal TLS errors are now silent by default. --- -*** If Emacs isn’t built with TLS support, an external TLS-capable +*** If Emacs isn't built with TLS support, an external TLS-capable program is used instead. This program used to be run in --insecure mode by default, but has now changed to be secure instead, and will fail if you try to connect to non-verifiable hosts. This is -controlled by the ‘tls-program’ variable. +controlled by the 'tls-program' variable. ** URL +++ *** The URL package accepts now the protocols "ssh", "scp" and "rsync". -When ‘url-handler-mode’ is enabled, file operations for these +When 'url-handler-mode' is enabled, file operations for these protocols as well as for "telnet" and "ftp" are passed to Tramp. +++ -*** The URL package allows customizing the ‘url-user-agent’ string. -The new ‘url-user-agent’ variable can be customized to be a string or +*** The URL package allows customizing the 'url-user-agent' string. +The new 'url-user-agent' variable can be customized to be a string or a function. --- -*** The new interface variable ‘url-request-noninteractive’ can be used -to specify that we’re running in a noninteractive context, and that +*** The new interface variable 'url-request-noninteractive' can be used +to specify that we're running in a noninteractive context, and that we should not be queried about things like TLS certificate validity. --- -*** ‘url-mime-accept-string’ can now be used as in “interface” -variable, meaning you can bind it around an ‘url-retrieve’ call. +*** 'url-mime-accept-string' can now be used as in "interface" +variable, meaning you can bind it around an 'url-retrieve' call. --- *** If URL is used with a https connection, the first callback argument plist will contain a :peer element that has the output of -‘gnutls-peer-status’ (if Emacs is built with GnuTLS support). +'gnutls-peer-status' (if Emacs is built with GnuTLS support). ** Tramp @@ -948,21 +951,21 @@ busyboxes. +++ *** Method-specific parameters can be overwritten now with variable -‘tramp-connection-properties’. +'tramp-connection-properties'. --- -*** Handler for ‘file-notify-valid-p’ for remote machines that support +*** Handler for 'file-notify-valid-p' for remote machines that support filesystem notifications. ** SQL mode --- -*** New user variable ‘sql-default-directory’ enables remote +*** New user variable 'sql-default-directory' enables remote connections using Tramp. --- -*** New command ‘sql-send-line-and-next’. -This command, bound to ‘C-c C-n’ by default, sends the current line to +*** New command 'sql-send-line-and-next'. +This command, bound to 'C-c C-n' by default, sends the current line to the SQL process and advances to the next line, skipping whitespace and comments. @@ -972,7 +975,7 @@ comments. ** VC and related modes +++ -*** Basic push support, via ‘vc-push’, bound to ‘C-x v P’. +*** Basic push support, via 'vc-push', bound to 'C-x v P'. Implemented for Bzr, Git, Hg. As part of this change, the pre-existing (undocumented) command vc-hg-push now behaves slightly differently. @@ -980,45 +983,45 @@ Implemented for Bzr, Git, Hg. As part of this change, the pre-existing *** The new command vc-region-history shows the log+diff of the active region. +++ -*** You can refresh the VC state of a file buffer with ‘M-x vc-refresh-state’. +*** You can refresh the VC state of a file buffer with 'M-x vc-refresh-state'. This command is useful when you perform version control commands outside Emacs (e.g., from the shell prompt), or if you switch the VC -back-end for the buffer’s file, or remove it from version control. +back-end for the buffer's file, or remove it from version control. +++ -*** New option ‘vc-annotate-background-mode’ controls whether -the color range from ‘vc-annotate-color-map’ is applied to the +*** New option 'vc-annotate-background-mode' controls whether +the color range from 'vc-annotate-color-map' is applied to the background or to the foreground. +++ -*** ‘compare-windows’ now compares text with the most recently selected window +*** 'compare-windows' now compares text with the most recently selected window instead of the next window. If you want the previous behavior of comparing with the next window, customize the new option -‘compare-windows-get-window-function’ to the value -‘compare-windows-get-next-window’. +'compare-windows-get-window-function' to the value +'compare-windows-get-next-window'. --- -*** Two new faces ‘compare-windows-removed’ and ‘compare-windows-added’ -replace the face ‘compare-windows’, which is now an obsolete alias for -‘compare-windows-added’. +*** Two new faces 'compare-windows-removed' and 'compare-windows-added' +replace the face 'compare-windows', which is now an obsolete alias for +'compare-windows-added'. --- *** The VC state indicator in the mode line now has different faces -corresponding to each of the possible states. See the ‘vc-faces’ +corresponding to each of the possible states. See the 'vc-faces' customization group. --- -*** ‘log-edit-insert-changelog’ converts “(tiny change)” to -“Copyright-paperwork-exempt: yes”. Set ‘log-edit-rewrite-tiny-change’ +*** 'log-edit-insert-changelog' converts "(tiny change)" to +"Copyright-paperwork-exempt: yes". Set 'log-edit-rewrite-tiny-change' nil to disable this. --- -** VHDL mode now supports VHDL’08. +** VHDL mode now supports VHDL'08. ** Calculator --- -*** Decimal display mode uses “,” groups, so it’s more +*** Decimal display mode uses "," groups, so it's more fitting for use in money calculations --- @@ -1029,59 +1032,59 @@ fitting for use in money calculations --- *** Hide-IfDef mode now support full C/C++ expressions in macros, macro argument expansion, interactive macro evaluation and automatic -scanning of #define’d symbols. +scanning of #define'd symbols. --- -*** New command ‘hif-evaluate-macro’, bound to ‘C-c @ e’, displays the +*** New command 'hif-evaluate-macro', bound to 'C-c @ e', displays the result of evaluating a macro. --- -*** New command ‘hif-clear-all-ifdef-define’, bound to ‘C-c @ C’, clears -all defined symbols in ‘hide-ifdef-env’. +*** New command 'hif-clear-all-ifdef-define', bound to 'C-c @ C', clears +all defined symbols in 'hide-ifdef-env'. --- -*** New custom variable ‘hide-ifdef-header-regexp’ to define C/C++ header -file name patterns. Defaults to files whose extension is one of ‘.h’, -‘.hh’, ‘.hpp’, ‘.hxx’, or ‘.h++’, matched case-insensitively. +*** New custom variable 'hide-ifdef-header-regexp' to define C/C++ header +file name patterns. Defaults to files whose extension is one of '.h', +'.hh', '.hpp', '.hxx', or '.h++', matched case-insensitively. --- -*** New custom variable ‘hide-ifdef-expand-reinclusion-protection’ to prevent -reinclusion protected (a.k.a. “idempotent”) header files from being hidden. +*** New custom variable 'hide-ifdef-expand-reinclusion-protection' to prevent +reinclusion protected (a.k.a. "idempotent") header files from being hidden. (This could happen when an idempotent header file is visited again, -when its guard symbol is already defined.) Defaults to ‘t’. +when its guard symbol is already defined.) Defaults to 't'. --- -*** New custom variable ‘hide-ifdef-exclude-define-regexp’ to define symbol -name patterns (e.g. all ‘FOR_DOXYGEN_ONLY_*’) to be ignored when +*** New custom variable 'hide-ifdef-exclude-define-regexp' to define symbol +name patterns (e.g. all "FOR_DOXYGEN_ONLY_*") to be ignored when looking for macro definitions. By default, no symbols are ignored. ** TeX mode +++ -*** New custom variable ‘tex-print-file-extension’ to help users who +*** New custom variable 'tex-print-file-extension' to help users who use PDF instead of DVI. +++ *** TeX mode now supports Prettify Symbols mode. When enabling -‘prettify-symbols-mode’ in a tex-mode buffer, \alpha ... \omega, and +'prettify-symbols-mode' in a tex-mode buffer, \alpha ... \omega, and many other math macros are displayed using unicode characters. +++ -** New ‘big-indent’ style in ‘whitespace-mode’ highlights deep indentation. +** New 'big-indent' style in 'whitespace-mode' highlights deep indentation. By default, 32 consecutive spaces or four consecutive TABs are considered to be too deep, but the new variable -‘whitespace-big-indent-regexp’ can be customized to change that. +'whitespace-big-indent-regexp' can be customized to change that. --- -** New options in ‘tildify-mode’. -New options ‘tildify-space-string’, ‘tildify-pattern’, and -‘tildify-foreach-region-function’ variables make -‘tildify-string-alist’, ‘tildify-pattern-alist’, and -‘tildify-ignored-environments-alist’ variables (as well as a few +** New options in 'tildify-mode'. +New options 'tildify-space-string', 'tildify-pattern', and +'tildify-foreach-region-function' variables make +'tildify-string-alist', 'tildify-pattern-alist', and +'tildify-ignored-environments-alist' variables (as well as a few helper functions) obsolete. +++ -** New package Xref replaces Etags’s front-end and UI +** New package Xref replaces Etags's front-end and UI The new package Xref provides a generic framework and new commands to find and move to definitions of functions, macros, data structures @@ -1090,43 +1093,43 @@ to a definition. It supersedes and obsoletes many Etags commands, while still using the etags.el code that reads the TAGS tables as one of its back-ends. -The command ‘xref-find-definitions’ replaces ‘find-tag’ and provides +The command 'xref-find-definitions' replaces 'find-tag' and provides an interface to pick one definition among several. -‘tags-loop-continue’ is now unbound. ‘xref-pop-marker-stack’ replaces -‘pop-tag-mark’, but has a keybinding (‘M-,’) different from the one -‘pop-tag-mark’ used. +'tags-loop-continue' is now unbound. 'xref-pop-marker-stack' replaces +'pop-tag-mark', but has a keybinding ('M-,') different from the one +'pop-tag-mark' used. -‘xref-find-definitions-other-window’ replaces ‘find-tag-other-window’. -‘xref-find-definitions-other-frame’ replaces ‘find-tag-other-frame’. -‘xref-find-apropos’ replaces ‘find-tag-regexp’. +'xref-find-definitions-other-window' replaces 'find-tag-other-window'. +'xref-find-definitions-other-frame' replaces 'find-tag-other-frame'. +'xref-find-apropos' replaces 'find-tag-regexp'. As a result of this, the following commands are now obsolete: -‘find-tag-other-window’, ‘find-tag-other-frame’, ‘find-tag-regexp’, -‘tags-apropos’. +'find-tag-other-window', 'find-tag-other-frame', 'find-tag-regexp', +'tags-apropos'. -‘tags-loop-continue’ is not obsolete because it’s still useful in -‘tags-search’ and ‘tags-query-replace’, for which there are no direct +'tags-loop-continue' is not obsolete because it's still useful in +'tags-search' and 'tags-query-replace', for which there are no direct replacements yet. +++ -*** Variants of ‘tags-search’ and ‘tags-query-replace’ in Dired were also -replaced by xref-style commands, see the “Dired” section below. +*** Variants of 'tags-search' and 'tags-query-replace' in Dired were also +replaced by xref-style commands, see the "Dired" section below. +++ *** New variables -‘find-tag-marker-ring-length’ is now an obsolete alias for -‘xref-marker-ring-length’. ‘find-tag-marker-ring’ is now an obsolete -alias for a private variable. ‘xref-push-marker-stack’ and -‘xref-pop-marker-stack’ should be used instead to manipulate the stack +'find-tag-marker-ring-length' is now an obsolete alias for +'xref-marker-ring-length'. 'find-tag-marker-ring' is now an obsolete +alias for a private variable. 'xref-push-marker-stack' and +'xref-pop-marker-stack' should be used instead to manipulate the stack of searches for definitions. --- -*** ‘xref-find-definitions’ and ‘describe-function’ now display +*** 'xref-find-definitions' and 'describe-function' now display information about mode local overrides (defined by cedet/mode-local.el -‘define-overloadable-function’ ‘define-mode-local-overrides’). +'define-overloadable-function' 'define-mode-local-overrides'). -The framework’s Lisp API is still experimental and can change in major, +The framework's Lisp API is still experimental and can change in major, backward-incompatible ways. --- @@ -1134,12 +1137,12 @@ backward-incompatible ways. The new package Project provides generic infrastructure for dealing with projects. The main commands included in it are -‘project-find-file’ and ‘project-find-regexp’. +'project-find-file' and 'project-find-regexp'. The Lisp API of this package is still experimental. ** EUDC -EUDC’s LDAP backend has been improved. +EUDC's LDAP backend has been improved. +++ *** EUDC supports LDAP-over-SSL URLs (ldaps://). @@ -1149,67 +1152,67 @@ EUDC’s LDAP backend has been improved. subprocess instead of on the command line. --- -*** EUDC handles LDAP wildcards automatically so the user shouldn’t +*** EUDC handles LDAP wildcards automatically so the user shouldn't need to configure this manually anymore. +++ -*** The LDAP configuration section of EUDC’s manual has been +*** The LDAP configuration section of EUDC's manual has been rewritten. There have also been customization changes. +++ -*** New custom variable ‘eudc-server-hotlist’ to allow specifying +*** New custom variable 'eudc-server-hotlist' to allow specifying multiple EUDC servers in init file. +++ -*** Custom variable ‘eudc-inline-query-format’ defaults to completing +*** Custom variable 'eudc-inline-query-format' defaults to completing on email and firstname instead of surname. --- -*** Custom variable ‘eudc-expansion-overwrites-query’ defaults to nil +*** Custom variable 'eudc-expansion-overwrites-query' defaults to nil to avoid interfering with the kill ring. +++ -*** Custom variable ‘eudc-inline-expansion-format’ defaults to +*** Custom variable 'eudc-inline-expansion-format' defaults to "Firstname Surname ". +++ -*** Custom variable ‘eudc-options-file’ defaults to +*** Custom variable 'eudc-options-file' defaults to "~/.emacs.d/eudc-options". --- -*** New custom variable ‘ldap-ldapsearch-password-prompt-regexp’ to +*** New custom variable 'ldap-ldapsearch-password-prompt-regexp' to allow overriding the regular expression that recognizes the ldapsearch -command line’s password prompt. +command line's password prompt. --- -EUDC’s BBDB backend now supports BBDB 3. +EUDC's BBDB backend now supports BBDB 3. --- -EUDC’s PH backend (eudcb-ph.el) is obsolete. +EUDC's PH backend (eudcb-ph.el) is obsolete. ** Eshell +++ -*** The new built-in command ‘clear’ can scroll window contents out of sight. +*** The new built-in command 'clear' can scroll window contents out of sight. If provided with an optional non-nil argument, the scrollback contents will be cleared. +++ -*** New buffer syntax ‘#’, which is equivalent to -‘#’. This shorthand makes interacting with +*** New buffer syntax '#', which is equivalent to +'#'. This shorthand makes interacting with buffers from eshell more convenient. Custom variable -‘eshell-buffer-shorthand’, which has been broken for a while, has been +'eshell-buffer-shorthand', which has been broken for a while, has been removed. +++ -*** By default, eshell “visual” program buffers (created by -‘eshell-visual-commands’ and similar custom vars) are no longer killed +*** By default, eshell "visual" program buffers (created by +'eshell-visual-commands' and similar custom vars) are no longer killed when their processes die. This fixes issues with short-lived commands and makes visual programs more useful in general. For example, if -‘git log’ is a visual command, it will always show the visual command -buffer, even if the ‘git log’ process dies. For the old behavior, -make the new option ‘eshell-destroy-buffer-when-process-dies’ non-nil. +"git log" is a visual command, it will always show the visual command +buffer, even if the "git log" process dies. For the old behavior, +make the new option 'eshell-destroy-buffer-when-process-dies' non-nil. ** Browse-url @@ -1223,7 +1226,7 @@ make the new option ‘eshell-destroy-buffer-when-process-dies’ non-nil. *** Support for several ancient browsers is now officially obsolete. +++ -** tar-mode: new ‘tar-new-entry’ command, allowing for new members to +** tar-mode: new 'tar-new-entry' command, allowing for new members to be added to the archive. ** Autorevert @@ -1233,7 +1236,7 @@ be added to the archive. Emacs is compiled with file notification support. --- -*** ‘auto-revert-use-notify’ is set to nil in ‘global-auto-revert-mode’. +*** 'auto-revert-use-notify' is set to nil in 'global-auto-revert-mode'. See . ** File Notifications @@ -1242,46 +1245,46 @@ See . *** The kqueue library is integrated for *BSD and Mac OS X machines. +++ -*** The new event ‘stopped’ signals, that a file notification watch is +*** The new event 'stopped' signals, that a file notification watch is not active any longer. +++ -*** The new function ‘file-notify-valid-p’ checks, whether a file +*** The new function 'file-notify-valid-p' checks, whether a file notification descriptor still corresponds to an activate watch. ** Dired +++ -*** The command ‘dired-do-compress’ bound to ‘Z’ now can compress +*** The command 'dired-do-compress' bound to 'Z' now can compress directories and decompress zip files. +++ -*** New command ‘dired-do-compress-to’ bound to ‘c’ can be used to +*** New command 'dired-do-compress-to' bound to 'c' can be used to compress many marked files into a single named archive. The compression command is determined from the new -‘dired-compress-files-alist’ variable. - -+++ -*** New user interface for the ‘A’ and ‘Q’ commands. -These keys, now bound to ‘dired-do-find-regexp’ and -‘dired-do-find-regexp-and-replace’, work similarly to ‘xref-find-apropos’ -and ‘xref-query-replace-in-results’: they present the matches -in the ‘*xref*’ buffer and let you move through the matches. No need -to use ‘tags-loop-continue’ to resume the search or replace loop. The -previous commands, ‘dired-do-search’ and -‘dired-do-query-replace-regexp’, are still available, but not bound to -keys; rebind ‘A’ and ‘Q’ to invoke them if you want the old behavior +'dired-compress-files-alist' variable. + ++++ +*** New user interface for the 'A' and 'Q' commands. +These keys, now bound to 'dired-do-find-regexp' and +'dired-do-find-regexp-and-replace', work similarly to 'xref-find-apropos' +and 'xref-query-replace-in-results': they present the matches +in the '*xref*' buffer and let you move through the matches. No need +to use 'tags-loop-continue' to resume the search or replace loop. The +previous commands, 'dired-do-search' and +'dired-do-query-replace-regexp', are still available, but not bound to +keys; rebind 'A' and 'Q' to invoke them if you want the old behavior back. We intend to obsolete the old commands in a future release. ** Tabulated List Mode +++ -*** It is now safe for a mode that derives ‘tabulated-list-mode’ to not -call ‘tabulated-list-init-header’, in which case it will have no +*** It is now safe for a mode that derives 'tabulated-list-mode' to not +call 'tabulated-list-init-header', in which case it will have no header. +++ -*** ‘tabulated-list-print’ takes a second optional argument, update, +*** 'tabulated-list-print' takes a second optional argument, update, which specifies an alternative printing method which is faster when few or no entries have changed. @@ -1302,13 +1305,13 @@ minibuffer instead of a graphical dialog, depending on whether the gpg command is called from Emacs (i.e., INSIDE_EMACS environment variable is set). This feature requires newer versions of GnuPG (2.1.5 or later) and Pinentry (0.9.5 or later). To use this feature, add -‘allow-emacs-pinentry’ to ‘~/.gnupg/gpg-agent.conf’ and reload the -configuration with ‘gpgconf --reload gpg-agent’. +"allow-emacs-pinentry" to "~/.gnupg/gpg-agent.conf" and reload the +configuration with "gpgconf --reload gpg-agent". +++ ** cl-generic.el provides CLOS-style multiple-dispatch generic functions. -The main entry points are ‘cl-defgeneric’ and ‘cl-defmethod’. See the -node “Generic Functions” in the Emacs Lisp manual for more details. +The main entry points are 'cl-defgeneric' and 'cl-defmethod'. See the +node "Generic Functions" in the Emacs Lisp manual for more details. --- ** scss-mode (a minor variant of css-mode) is a major mode for editing @@ -1319,25 +1322,25 @@ SCSS (Sassy CSS) files. let-bind the values stored in an alist. --- -** ‘tildify-mode’ allows automatic insertion of hard spaces as one +** 'tildify-mode' allows automatic insertion of hard spaces as one types the text. Breaking line after a single-character words is forbidden by Czech and Polish typography (and may be discouraged in -other languages), so ‘auto-tildify-mode’ makes it easier to create +other languages), so 'auto-tildify-mode' makes it easier to create a typographically-correct documents. --- -** The ‘seq’ library adds sequence manipulation functions and macros +** The 'seq' library adds sequence manipulation functions and macros that complement basic functions provided by subr.el. All functions -are prefixed with ‘seq-’ and work on lists, strings and vectors. -‘pcase’ accepts a new Upattern ‘seq’. +are prefixed with 'seq-' and work on lists, strings and vectors. +'pcase' accepts a new Upattern 'seq'. --- -** The ‘map’ library provides map-manipulation functions that work on +** The 'map' library provides map-manipulation functions that work on alists, hash-table and arrays. All functions are prefixed with -‘map-’. ‘pcase’ accepts a new UPattern ‘map’. +'map-'. 'pcase' accepts a new UPattern 'map'. --- -** The ‘thunk’ library provides functions and macros to control the +** The 'thunk' library provides functions and macros to control the evaluation of forms. --- @@ -1348,79 +1351,79 @@ support for JSX, an XML-like syntax extension to ECMAScript. * Incompatible Lisp Changes in Emacs 25.1 --- -** ‘setq’ and ‘setf’ must now be called with an even number of +** 'setq' and 'setf' must now be called with an even number of arguments. The earlier behavior of silently supplying a nil to the last variable when there was an odd number of arguments has been eliminated. +++ -** ‘syntax-begin-function’ is declared obsolete. +** 'syntax-begin-function' is declared obsolete. Removed font-lock-beginning-of-syntax-function and the SYNTAX-BEGIN slot in font-lock-defaults. +++ ** The new implementation of Subword mode affects word movement everywhere. -When Subword mode is turned on, ‘forward-word’, ‘backward-word’, and +When Subword mode is turned on, 'forward-word', 'backward-word', and everything that uses them will move by sub-words, effectively -overriding the buffer’s syntax table. Lisp programs that shouldn’t be +overriding the buffer's syntax table. Lisp programs that shouldn't be affected by Subword mode should call the new functions -‘forward-word-strictly’ and ‘backward-word-strictly’ instead. +'forward-word-strictly' and 'backward-word-strictly' instead. +++ -** ‘package-initialize’ now sets ‘package-enable-at-startup’ to nil if +** 'package-initialize' now sets 'package-enable-at-startup' to nil if called during startup. Users who call this function in their init file and still expect it to be run after startup should set -‘package-enable-at-startup’ to t after the call to -‘package-initialize’. +'package-enable-at-startup' to t after the call to +'package-initialize'. --- -** ‘:global’ minor mode use ‘setq-default’ rather than ‘setq’. -This means that you can’t use ‘make-local-variable’ and expect them to -“magically” become buffer-local. +** ':global' minor mode use 'setq-default' rather than 'setq'. +This means that you can't use 'make-local-variable' and expect them to +"magically" become buffer-local. +++ -** ‘track-mouse’ no longer freezes the shape of the mouse pointer. -The ‘track-mouse’ form no longer refrains from changing the shape of +** 'track-mouse' no longer freezes the shape of the mouse pointer. +The 'track-mouse' form no longer refrains from changing the shape of the mouse pointer for the entire time the body of that form is -executed. Lisp programs that use ‘track-mouse’ for dragging across +executed. Lisp programs that use 'track-mouse' for dragging across large portions of the Emacs display, and want to avoid changes in the -pointer shape during dragging, should bind the variable ‘track-mouse’ -to the special value ‘dragging’ in the body of the form. +pointer shape during dragging, should bind the variable 'track-mouse' +to the special value 'dragging' in the body of the form. --- -** The optional ‘predicate’ argument of ‘lisp-complete-symbol’ no longer +** The optional 'predicate' argument of 'lisp-complete-symbol' no longer has any effect. (This change was made in Emacs 24.4 but was not advertised at the time.) +++ -** ‘indirect-function’ does not signal ‘void-function’ any more. +** 'indirect-function' does not signal 'void-function' any more. This is mostly a bug-fix, since this change was missed back in 24.4 when -symbol-function was changed not to signal ‘void-function’ any more. +symbol-function was changed not to signal 'void-function' any more. +++ -*** As a consequence, the second arg of ‘indirect-function’ is now obsolete. +*** As a consequence, the second arg of 'indirect-function' is now obsolete. +++ ** Comint, term, and compile do not set the EMACS env var any more. Use the INSIDE_EMACS environment variable instead. +++ -** ‘save-excursion’ does not save&restore the mark any more. -Use ‘save-mark-and-excursion’ if you want the old behavior. +** 'save-excursion' does not save&restore the mark any more. +Use 'save-mark-and-excursion' if you want the old behavior. +++ -** ‘read-buffer’ and ‘read-buffer-function’ can now be called with a 4th -argument (‘predicate’). +** 'read-buffer' and 'read-buffer-function' can now be called with a 4th +argument ('predicate'). +++ -** ‘completion-table-dynamic’ by default stays in the minibuffer. +** 'completion-table-dynamic' by default stays in the minibuffer. The minibuffer will be the current buffer when the function is called. If you want the old behavior of calling the function in the buffer from which the minibuffer was entered, use the new argument -‘switch-buffer’ to ‘completion-table-dynamic’. +'switch-buffer' to 'completion-table-dynamic'. --- -** window-configurations no longer record the buffers’ marks. +** window-configurations no longer record the buffers' marks. --- ** inhibit-modification-hooks now also inhibits lock-file checks, as well as @@ -1430,11 +1433,11 @@ active region handling. ** deactivate-mark is now buffer-local. +++ -** ‘cl-the’ now asserts that its argument is of the given type. +** 'cl-the' now asserts that its argument is of the given type. +++ -** ‘process-running-child-p’ may now return a numeric process -group ID instead of ‘t’. +** 'process-running-child-p' may now return a numeric process +group ID instead of 't'. +++ ** Mouse click events on mode line or header line no longer include @@ -1442,35 +1445,35 @@ any reference to a buffer position. The 6th member of the mouse position list returned for such events is now nil. --- -** Menu items in keymaps do not support the “key shortcut cache” any more. +** Menu items in keymaps do not support the "key shortcut cache" any more. These slots used to hold key-shortcut data, but have been obsolete since Emacs-21. --- ** Emacs no longer downcases the first letter of a system diagnostic -when signaling a file error. For example, it now reports “Permission -denied” instead of “permission denied”. The old behavior was problematic +when signaling a file error. For example, it now reports "Permission +denied" instead of "permission denied". The old behavior was problematic in languages like German where downcasing rules depend on grammar. +++ -** New variable ‘text-quoting-style’ to control how Emacs translates quotes. -Set it to ‘curve’ for curved single quotes ‘like this’, to ‘straight’ -for straight apostrophes 'like this', and to ‘grave’ for grave accent -and apostrophe `like this'. The default value nil acts like ‘curve’ -if curved single quotes are displayable, and like ‘grave’ otherwise. -The new variable affects display of diagnostics and help, but not of info. +** New variable 'text-quoting-style' to control how Emacs translates quotes. +Set it to 'curve' for curved single quotes, to 'straight' for straight +apostrophes, and to 'grave' for grave accent and apostrophe. The +default value nil acts like 'curve' if curved single quotes are +displayable, and like 'grave' otherwise. The new variable affects +display of diagnostics and help, but not of info. +++ ** substitute-command-keys now replaces quotes. -That is, it converts documentation strings’ quoting style as per the -value of ‘text-quoting-style’. Doc strings in source code can use +That is, it converts documentation strings' quoting style as per the +value of 'text-quoting-style'. Doc strings in source code can use either curved single quotes or grave accents and apostrophes. As before, characters preceded by \= are output as-is. +++ -** Message-issuing functions ‘error’, ‘message’, etc. now convert quotes. -They use the new ‘format-message’ function instead of plain ‘format’, -so that they now follow user preference as per ‘text-quoting-style’ +** Message-issuing functions 'error', 'message', etc. now convert quotes. +They use the new 'format-message' function instead of plain 'format', +so that they now follow user preference as per 'text-quoting-style' when processing curved single quotes, grave accents, and apostrophes in their format argument. @@ -1478,7 +1481,7 @@ in their format argument. ** The character classes [:alpha:] and [:alnum:] in regular expressions now match multibyte characters using Unicode character properties. If you want the old behavior where they matched any character with -word syntax, use ‘\sw’ instead. +word syntax, use '\sw' instead. +++ ** The character classes [:graph:] and [:print:] in regular expressions @@ -1489,113 +1492,113 @@ unassigned codepoints are now rejected. If you want the old behavior, use [:multibyte:] instead. +++ -** The ‘diff’ command uses the unified format now. To restore the old -behavior, set ‘diff-switches’ to ‘-c’. +** The 'diff' command uses the unified format now. To restore the old +behavior, set 'diff-switches' to '-c'. --- -** ‘grep-template’ and ‘grep-find-template’ values don’t include the ---color argument anymore. It’s added at the place holder position +** 'grep-template' and 'grep-find-template' values don't include the +--color argument anymore. It's added at the place holder position dynamically. Any third-party code that changes these templates should be updated accordingly. +++ -** ‘(/ N)’ is now equivalent to ‘(/ 1 N)’ rather than to ‘(/ N 1)’. +** '(/ N)' is now equivalent to '(/ 1 N)' rather than to '(/ N 1)'. The new behavior is compatible with Common Lisp and with XEmacs. This change does not affect Lisp code intended to be portable to -Emacs 24.2 and earlier, which did not support unary ‘/’. +Emacs 24.2 and earlier, which did not support unary '/'. +++ -** The ‘default-directory’ value doesn’t have to end slash. To make -that happen, ‘unhandled-file-name-directory’ now defaults to calling -‘file-name-as-directory’. +** The 'default-directory' value doesn't have to end slash. To make +that happen, 'unhandled-file-name-directory' now defaults to calling +'file-name-as-directory'. * Lisp Changes in Emacs 25.1 ** pcase +++ -*** New UPatterns ‘quote’, ‘app’. +*** New UPatterns 'quote', 'app'. +++ -*** New UPatterns can be defined with ‘pcase-defmacro’. +*** New UPatterns can be defined with 'pcase-defmacro'. +++ *** New vector QPattern. --- ** syntax-propertize is now automatically called on-demand during forward -parsing functions like ‘forward-sexp’. +parsing functions like 'forward-sexp'. +++ -** New hooks ‘prefix-command-echo-keystrokes-functions’ and -‘prefix-command-preserve-state-hook’ allow the definition of prefix -commands other than the predefined ‘C-u’. +** New hooks 'prefix-command-echo-keystrokes-functions' and +'prefix-command-preserve-state-hook' allow the definition of prefix +commands other than the predefined 'C-u'. +++ -** New functions ‘filepos-to-bufferpos’ and ‘bufferpos-to-filepos’. +** New functions 'filepos-to-bufferpos' and 'bufferpos-to-filepos'. These allow conversion between buffer positions and the corresponding -file byte offsets, given the file’s encoding. +file byte offsets, given the file's encoding. +++ -** The default value of ‘load-read-function’ is now ‘read’. -Previously, the default value of ‘nil’ implied using ‘read’. +** The default value of 'load-read-function' is now 'read'. +Previously, the default value of 'nil' implied using 'read'. +++ -** New hook ‘pre-redisplay-functions’. -It is a bit easier to use than ‘pre-redisplay-function’. +** New hook 'pre-redisplay-functions'. +It is a bit easier to use than 'pre-redisplay-function'. +++ -** The second arg of ‘looking-back’ should always be provided explicitly. -Previously, it was an optional argument, now it’s mandatory. +** The second arg of 'looking-back' should always be provided explicitly. +Previously, it was an optional argument, now it's mandatory. +++ -** Text properties ‘intangible’, ‘point-entered’, and ‘point-left’ are obsolete. -Replaced by properties ‘cursor-intangible’ and ‘cursor-sensor-functions’, -implemented by the new ‘cursor-intangible-mode’ and -‘cursor-sensor-mode’ minor modes. +** Text properties 'intangible', 'point-entered', and 'point-left' are obsolete. +Replaced by properties 'cursor-intangible' and 'cursor-sensor-functions', +implemented by the new 'cursor-intangible-mode' and +'cursor-sensor-mode' minor modes. +++ -** ‘inhibit-point-motion-hooks’ now defaults to ‘t’ and is obsolete. -Use the new minor modes ‘cursor-intangible-mode’ and -‘cursor-sensor-mode’ instead. +** 'inhibit-point-motion-hooks' now defaults to 't' and is obsolete. +Use the new minor modes 'cursor-intangible-mode' and +'cursor-sensor-mode' instead. +++ -** New process type ‘pipe’, which can be used in combination with the -‘:stderr’ keyword of make-process to handle standard error output +** New process type 'pipe', which can be used in combination with the +':stderr' keyword of make-process to handle standard error output of subprocess. +++ -** New function ‘make-process’ provides an alternative interface to -‘start-process’. It allows programs to set process parameters such as +** New function 'make-process' provides an alternative interface to +'start-process'. It allows programs to set process parameters such as process filter, sentinel, etc., through keyword arguments (similar to -‘make-network-process’). +'make-network-process'). +++ -** A new function ‘directory-files-recursively’ returns all matching +** A new function 'directory-files-recursively' returns all matching files (recursively) under a directory. +++ -** New variable ‘inhibit-message’, when bound to non-nil, inhibits -‘message’ and related functions from displaying messages in the echo +** New variable 'inhibit-message', when bound to non-nil, inhibits +'message' and related functions from displaying messages in the echo area. The output is still logged to the *Messages* buffer. +++ -** A new text property ‘inhibit-read-only’ can be used in read-only +** A new text property 'inhibit-read-only' can be used in read-only buffers to allow certain parts of the text to be writable. +++ -** A new variable ‘comment-end-can-be-escaped’ is useful in languages +** A new variable 'comment-end-can-be-escaped' is useful in languages such as C and C++ where line comments with escaped newlines are continued to the next line. +++ -** New macro ‘define-advice’. +** New macro 'define-advice'. +++ ** Emacs Lisp now supports generators. -See the ‘Generators’ section of the ELisp manual for the details. +See the "Generators" section of the ELisp manual for the details. +++ ** New finalizer facility for running code when objects become unreachable. -See the ‘Finalizer Type’ subsection in the ELisp manual for the +See the "Finalizer Type" subsection in the ELisp manual for the details. --- @@ -1607,10 +1610,10 @@ evaluated (and should return a string) when the closure is built. ** define-inline provides a new way to define inlinable functions. +++ -** New function ‘macroexpand-1’ to perform a single step of macro expansion. +** New function 'macroexpand-1' to perform a single step of macro expansion. +++ -** Some ‘x-*’ functions were obsoleted and/or renamed: +** Some "x-*" functions were obsoleted and/or renamed: *** x-select-text is renamed gui-select-text. *** x-selection-value is renamed gui-selection-value. *** x-get-selection is renamed gui-get-selection. @@ -1619,18 +1622,18 @@ evaluated (and should return a string) when the closure is built. *** x-set-selection is renamed to gui-set-selection +++ -** New function ‘string-greaterp’, which return the opposite result of -‘string-lessp’. +** New function 'string-greaterp', which return the opposite result of +'string-lessp'. +++ -** The new functions ‘string-collate-lessp’ and ‘string-collate-equalp’ -preserve the collation order as defined by the system’s locale(1) +** The new functions 'string-collate-lessp' and 'string-collate-equalp' +preserve the collation order as defined by the system's locale(1) environment. For the time being this is implemented for modern POSIX systems and for MS-Windows, for other systems they fall back to their -counterparts ‘string-lessp’ and ‘string-equal’. +counterparts 'string-lessp' and 'string-equal'. --- -*** The ls-lisp package uses ‘string-collate-lessp’ to sort file names. +*** The ls-lisp package uses 'string-collate-lessp' to sort file names. The effect is that, on systems that use ls-lisp for Dired, the default sort order of the files in Dired is now different from what it was in previous versions of Emacs. In particular, the file names are sorted @@ -1638,125 +1641,125 @@ disregarding punctuation, accents, and diacritics, and letter case is ignored. For example, files whose name begin with a period will no longer appear near the beginning of the directory listing. If you want the old, locale-independent sorting, customize the new option -‘ls-lisp-use-string-collate’ to the nil value. +'ls-lisp-use-string-collate' to the nil value. +++ -*** The MS-Windows specific variable ‘w32-collate-ignore-punctuation’, +*** The MS-Windows specific variable 'w32-collate-ignore-punctuation', if set to a non-nil value, causes the above 2 functions to ignore symbol and punctuation characters when collating strings. This -emulates the behavior of modern Posix platforms when the locale’s -codeset is UTF-8 (as in ‘en_US.UTF-8’). This is needed because -MS-Windows doesn’t support UTF-8 as codeset in its locales. +emulates the behavior of modern Posix platforms when the locale's +codeset is "UTF-8" (as in "en_US.UTF-8"). This is needed because +MS-Windows doesn't support UTF-8 as codeset in its locales. +++ -** New function ‘alist-get’, which is also a valid place (aka lvalue). +** New function 'alist-get', which is also a valid place (aka lvalue). +++ -** New function ‘funcall-interactively’, which works like ‘funcall’ -but makes ‘called-interactively-p’ treat the function as (you guessed it) +** New function 'funcall-interactively', which works like 'funcall' +but makes 'called-interactively-p' treat the function as (you guessed it) called interactively. +++ -** New function ‘function-put’ to use instead of ‘put’ for function properties. +** New function 'function-put' to use instead of 'put' for function properties. +++ -** The new function ‘bidi-find-overridden-directionality’ allows you to +** The new function 'bidi-find-overridden-directionality' allows you to find characters whose directionality was, perhaps maliciously, overridden by directional override control characters. Lisp programs can use this to detect potential phishing of URLs and other links that exploits bidirectional display reordering. +++ -** The new function ‘buffer-substring-with-bidi-context’ allows you to +** The new function 'buffer-substring-with-bidi-context' allows you to copy a portion of a buffer into a different location while preserving the visual appearance both of the copied text and the text at destination, even when the copied text includes mixed bidirectional text and directional control characters. +++ -** New properties that can be specified with ‘declare’: +** New properties that can be specified with 'declare': *** (interactive-only INSTEAD), says to use INSTEAD for non-interactive use. *** (pure VAL), if VAL is non-nil, indicates the function is pure. *** (side-effect-free VAL), if VAL is non-nil, indicates the function does not have side effects. +++ -** New macro ‘with-file-modes’, for evaluating expressions with default file +** New macro 'with-file-modes', for evaluating expressions with default file permissions set to temporary values (e.g., for creating private files). +++ -** You can access the slots of structures using ‘cl-struct-slot-value’. +** You can access the slots of structures using 'cl-struct-slot-value'. +++ -** Function ‘sort’ can deal with vectors. +** Function 'sort' can deal with vectors. --- -** Function ‘system-name’ now returns an updated value if the current -system’s name has changed or if the Emacs process has changed systems, +** Function 'system-name' now returns an updated value if the current +system's name has changed or if the Emacs process has changed systems, and to avoid long waits it no longer consults DNS to canonicalize the -name. The variable ‘system-name’ is now obsolete. +name. The variable 'system-name' is now obsolete. +++ -** Function ‘write-region’ no longer outputs “Wrote FILE” in batch mode. +** Function 'write-region' no longer outputs "Wrote FILE" in batch mode. --- -** If ‘pwd’ is called with a prefix argument, insert the current default +** If 'pwd' is called with a prefix argument, insert the current default directory at point. +++ ** New functions return extended information about fonts and faces. +++ -*** The function ‘font-info’ now returns more details about a font. -In particular, it now returns the average width of the font’s +*** The function 'font-info' now returns more details about a font. +In particular, it now returns the average width of the font's characters, which can be used for geometry-related calculations. +++ -*** A new function ‘default-font-width’ returns the average width of a -character in the current buffer’s default font. If the default face -is remapped (see ‘face-remapping-alist’), the value for the remapped +*** A new function 'default-font-width' returns the average width of a +character in the current buffer's default font. If the default face +is remapped (see 'face-remapping-alist'), the value for the remapped face is returned. This function complements the existing function -‘default-font-height’. +'default-font-height'. +++ -*** New functions ‘window-font-height’ and ‘window-font-width’ return +*** New functions 'window-font-height' and 'window-font-width' return the height and average width of characters in a specified face and -window. If FACE is remapped (see ‘face-remapping-alist’), the +window. If FACE is remapped (see 'face-remapping-alist'), the function returns the information for the remapped face. +++ -*** A new function ‘window-max-chars-per-line’ returns the maximal +*** A new function 'window-max-chars-per-line' returns the maximal number of characters that can be displayed on one line. If a face and/or window are provided, these values are used for the -calculation. This function is different from ‘window-body-width’ in +calculation. This function is different from 'window-body-width' in that it accounts for (i) continuation glyphs, (ii) the size of the font, and (iii) the specified window. --- ** New utilities in subr-x.el: -*** New macros ‘if-let’ and ‘when-let’ allow defining bindings and to +*** New macros 'if-let' and 'when-let' allow defining bindings and to execute code depending whether all values are true. -*** New macros ‘thread-first’ and ‘thread-last’ allow threading a form +*** New macros 'thread-first' and 'thread-last' allow threading a form as the first or last argument of subsequent forms. +++ ** Documentation strings now support quoting with curved single quotes -‘like-this’ in addition to the old style with grave accent and -apostrophe `like-this'. The new style looks better on today’s displays. -In the new Electric Quote mode, you can enter curved single quotes -into documentation by typing ` and '. Outside Electric Quote mode, -you can enter them by typing ‘C-x 8 [’ and ‘C-x 8 ]’, or (if your Alt -key works) by typing ‘A-[’ and ‘A-]’. As described above under -‘text-quoting-style’, the user can specify how to display doc string +in addition to the old style with grave accent and apostrophe. The +new style looks better on today's displays. In the new Electric Quote +mode, you can enter curved single quotes into documentation by typing +grave accent and apostrophe. Outside Electric Quote mode, you can +enter them by typing 'C-x 8 [' and 'C-x 8 ]', or (if your Alt key +works) by typing 'A-[' and 'A-]'. As described above under +'text-quoting-style', the user can specify how to display doc string quotes. +++ -** New function ‘format-message’ is like ‘format’ and also converts +** New function 'format-message' is like 'format' and also converts curved single quotes, grave accents and apostrophes as per -‘text-quoting-style’. +'text-quoting-style'. +++ -** show-help-function’s arg is converted via substitute-command-keys +** show-help-function's arg is converted via substitute-command-keys before being passed to the function. Help strings, help-echo properties, etc. can therefore contain command key escapes and quotation marks. @@ -1766,36 +1769,36 @@ quotation marks. *** Time conversion functions now accept an optional ZONE argument that specifies the time zone rules for conversion. ZONE is omitted or -nil for Emacs local time, t for Universal Time, ‘wall’ for system wall -clock time, or a string as in ‘set-time-zone-rule’ for a time zone -rule. The affected functions are ‘current-time-string’, -‘current-time-zone’, ‘decode-time’, and ‘format-time-string’. The -function ‘encode-time’, which already accepted a simple time zone rule +nil for Emacs local time, t for Universal Time, 'wall' for system wall +clock time, or a string as in 'set-time-zone-rule' for a time zone +rule. The affected functions are 'current-time-string', +'current-time-zone', 'decode-time', and 'format-time-string'. The +function 'encode-time', which already accepted a simple time zone rule argument, has been extended to accept all the new forms. *** Time-related functions now consistently accept numbers (representing seconds since the epoch) and nil (representing the current time) as well as the usual list-of-integer representation. -Affected functions include ‘current-time-string’, ‘current-time-zone’, -‘decode-time’, ‘float-time’, ‘format-time-string’, ‘seconds-to-time’, -‘time-add’, ‘time-less-p’, ‘time-subtract’, ‘time-to-day-in-year’, -‘time-to-days’, and ‘time-to-seconds’. +Affected functions include 'current-time-string', 'current-time-zone', +'decode-time', 'float-time', 'format-time-string', 'seconds-to-time', +'time-add', 'time-less-p', 'time-subtract', 'time-to-day-in-year', +'time-to-days', and 'time-to-seconds'. -*** The ‘encode-time-value’ and ‘with-decoded-time-value’ macros have +*** The 'encode-time-value' and 'with-decoded-time-value' macros have been obsoleted. -*** ‘calendar-next-time-zone-transition’, ‘time-add’, and -‘time-subtract’ no longer return time values in the obsolete and +*** 'calendar-next-time-zone-transition', 'time-add', and +'time-subtract' no longer return time values in the obsolete and undocumented integer-pair format. Instead, they return a list of two integers. +++ -** New function ‘set-binary-mode’ allows switching a standard stream +** New function 'set-binary-mode' allows switching a standard stream of the Emacs process to binary I/O mode. +++ -** The new function ‘directory-name-p’ can be used to check whether a file -name (as returned from, for instance, ‘file-name-all-completions’) is +** The new function 'directory-name-p' can be used to check whether a file +name (as returned from, for instance, 'file-name-all-completions') is a directory file name. It returns non-nil if the last character in the name is a directory separator character (forward slash on GNU and Unix systems, forward- or backslash on MS-Windows and MS-DOS). @@ -1807,22 +1810,22 @@ if the terminal cannot display curved quotes. +++ ** Standard output and error streams now transliterate characters via standard-display-table, and encode output using locale-coding-system. -To force a specific encoding, bind ‘coding-system-for-write’ to the -coding-system of your choice when invoking functions like ‘prin1’ and -‘message’. +To force a specific encoding, bind 'coding-system-for-write' to the +coding-system of your choice when invoking functions like 'prin1' and +'message'. +++ -** New var ‘truncate-string-ellipsis’ to choose how to indicate truncation. +** New var 'truncate-string-ellipsis' to choose how to indicate truncation. +++ -** New possible value for ‘system-type’: ‘nacl’. -This is used by Google’s Native Client (NaCl). +** New possible value for 'system-type': 'nacl'. +This is used by Google's Native Client (NaCl). ** Miscellaneous name change --- For consistency with the usual Emacs spelling, the Lisp variable -‘hfy-optimisations’ has been renamed to ‘hfy-optimizations’. +'hfy-optimisations' has been renamed to 'hfy-optimizations'. The old name should still work, as an obsolescent alias. ** Changes in Frame- and Window- Handling @@ -1832,59 +1835,59 @@ The old name should still work, as an obsolescent alias. provide toolkit scroll bars, namely Gtk+, Lucid, Motif and Windows. Horizontal scroll bars are turned off by default. -**** New function ‘horizontal-scroll-bars-available-p’ telling whether +**** New function 'horizontal-scroll-bars-available-p' telling whether horizontal scroll bars are available on the underlying system. -**** New mode ‘horizontal-scroll-bar-mode’ to toggle horizontal scroll +**** New mode 'horizontal-scroll-bar-mode' to toggle horizontal scroll bars on all existing and future frames. -**** New function ‘toggle-horizontal-scroll-bar’ to toggle horizontal +**** New function 'toggle-horizontal-scroll-bar' to toggle horizontal scroll bars on the selected frame. -**** New frame parameters ‘horizontal-scroll-bars’ and - ‘scroll-bar-height’ to set horizontal scroll bars and their height - for individual frames and in ‘default-frame-alist’. +**** New frame parameters 'horizontal-scroll-bars' and + 'scroll-bar-height' to set horizontal scroll bars and their height + for individual frames and in 'default-frame-alist'. -**** New functions ‘frame-scroll-bar-height’ and - ‘window-scroll-bar-height’ return the height of horizontal scroll +**** New functions 'frame-scroll-bar-height' and + 'window-scroll-bar-height' return the height of horizontal scroll bars on a specific frame or window. -**** ‘set-window-scroll-bars’ now accepts five parameters where the last - two specify height and type of the window’s horizontal scroll bar. +**** 'set-window-scroll-bars' now accepts five parameters where the last + two specify height and type of the window's horizontal scroll bar. -**** ‘window-scroll-bars’ now returns type and sizes of horizontal scroll +**** 'window-scroll-bars' now returns type and sizes of horizontal scroll bars too. -**** New buffer-local variables ‘horizontal-scroll-bar’ and - ‘scroll-bar-height’. +**** New buffer-local variables 'horizontal-scroll-bar' and + 'scroll-bar-height'. +++ -*** New functions ‘frame-geometry’ and ‘frame-edges’ give access to a -frame’s geometry. +*** New functions 'frame-geometry' and 'frame-edges' give access to a +frame's geometry. +++ -*** New functions ‘mouse-absolute-pixel-position’ and -‘set-mouse-absolute-pixel-position’ get/set screen coordinates of the +*** New functions 'mouse-absolute-pixel-position' and +'set-mouse-absolute-pixel-position' get/set screen coordinates of the mouse cursor. +++ -*** The function ‘window-edges’ now accepts three additional arguments to +*** The function 'window-edges' now accepts three additional arguments to retrieve body, absolute and pixel edges of the window. +++ -*** The functions ‘window-inside-edges’, ‘window-inside-pixel-edges’ and -‘window-inside-absolute-pixel-edges’ have been renamed to respectively -‘window-body-edges’, ‘window-body-pixel-edges’ and -‘window-absolute-body-pixel-edges’. The old names are kept as aliases. +*** The functions 'window-inside-edges', 'window-inside-pixel-edges' and +'window-inside-absolute-pixel-edges' have been renamed to respectively +'window-body-edges', 'window-body-pixel-edges' and +'window-absolute-body-pixel-edges'. The old names are kept as aliases. +++ -*** New function ‘window-absolute-pixel-position’ to get the screen +*** New function 'window-absolute-pixel-position' to get the screen coordinates of a visible buffer position. +++ -*** The height of a frame’s menu and tool bar are no longer counted in the -frame’s text height. This means that the text height stands only for -the height of the frame’s root window plus that of the echo area (if +*** The height of a frame's menu and tool bar are no longer counted in the +frame's text height. This means that the text height stands only for +the height of the frame's root window plus that of the echo area (if present). This was already the behavior for frames with external tool and menu bars (like in the Gtk builds) but has now been extended to all builds. @@ -1895,26 +1898,26 @@ they display when setting default font, menu bar, fringe width, or scroll bars. In particular, maximized and fullscreen frames are conceptually never resized if such settings change. For fullheight and fullwidth frames, the behavior may depend on the toolkit used. -**** New option ‘frame-inhibit-implied-resize’ if non-nil, means that +**** New option 'frame-inhibit-implied-resize' if non-nil, means that setting default font, menu bar, fringe width, or scroll bars of a specific frame does not resize that frame in order to preserve the number of columns or lines it displays. +++ -*** New function ‘window-preserve-size’ allows you to preserve the size of -a window without “fixing” it. It’s supported by ‘fit-window-to-buffer’, -‘temp-buffer-resize-mode’ and ‘display-buffer’. +*** New function 'window-preserve-size' allows you to preserve the size of +a window without "fixing" it. It's supported by 'fit-window-to-buffer', +'temp-buffer-resize-mode' and 'display-buffer'. +++ -*** New ‘display-buffer’ action function ‘display-buffer-use-some-frame’. +*** New 'display-buffer' action function 'display-buffer-use-some-frame'. This displays the buffer in an existing frame other than the current frame, and allows the caller to specify a frame predicate to exclude frames. +++ -*** New minor mode ‘window-divider-mode’ and options -‘window-divider-default-places’, ‘window-divider-default-bottom-width’ -and ‘window-divider-default-right-width’. +*** New minor mode 'window-divider-mode' and options +'window-divider-default-places', 'window-divider-default-bottom-width' +and 'window-divider-default-right-width'. --- ** Tearoff menus and detachable toolbars for Gtk+ have been removed. @@ -1925,17 +1928,17 @@ Those features have been deprecated in Gtk+ for a long time. +++ *** etags no longer qualifies class members by default. -By default, ‘etags’ will not qualify class members for Perl and C-like +By default, 'etags' will not qualify class members for Perl and C-like object-oriented languages with their class names and namespaces, and will remove qualifications used explicitly in the code from the tag names it puts in TAGS files. This is so the etags.el back-end for -‘xref-find-definitions’ is more accurate and produces less false +'xref-find-definitions' is more accurate and produces less false positives. Use --class-qualify (-Q) if you want the old default behavior of qualifying class members in C++, Java, Objective C, and Perl. Note -that using -Q might make some class members become “unknown” to ‘M-.’ -(‘xref-find-definitions’); if so, you can use ‘C-u M-.’ to specify the +that using -Q might make some class members become "unknown" to 'M-.' +('xref-find-definitions'); if so, you can use 'C-u M-.' to specify the qualified names by hand. +++ @@ -1951,7 +1954,7 @@ Names of packages, functions, and types are tagged. +++ *** Improved support for Lua -Etags now tags functions even if the ‘function’ keyword follows some +Etags now tags functions even if the "function" keyword follows some whitespace at line beginning. @@ -1962,7 +1965,7 @@ whitespace at line beginning. This includes the makefile.w32-in files in various subdirectories, and the support files. The file nt/configure.bat now just tells the user to use the procedure described in nt/INSTALL, by running the Posix -‘configure’ script in the top-level directory. +'configure' script in the top-level directory. --- ** Building Emacs for MS-Windows requires at least Windows XP @@ -1977,8 +1980,8 @@ of Windows starting with Windows 9X. MS-Windows as they are on other platforms. --- -** On OS X, configure creates a Cocoa (“Nextstep”) build by default. -Pass ‘--without-ns’ to configure to create an X11 build, the old default. +** On OS X, configure creates a Cocoa ("Nextstep") build by default. +Pass '--without-ns' to configure to create an X11 build, the old default. --- ** OS X 10.5 or older is no longer supported. @@ -1987,16 +1990,16 @@ Pass ‘--without-ns’ to configure to create an X11 build, the old default. ** OS X on PowerPC is no longer supported. --- -** New variable ‘ns-use-fullscreen-animation’ controls animation for +** New variable 'ns-use-fullscreen-animation' controls animation for non-native NS fullscreen. The default is nil. Set to t to enable animation when entering and leaving fullscreen. For native OSX fullscreen this has no effect. --- -** The new function ‘w32-application-type’ returns the type of an +** The new function 'w32-application-type' returns the type of an MS-Windows application given the name of its executable program file. -** New variable ‘w32-pipe-buffer-size’ +** New variable 'w32-pipe-buffer-size'. It can be used to tune the size of the buffer of pipes created for communicating with subprocesses, when the program run by a subprocess exhibits unusual buffering behavior. Default is zero, which lets the @@ -2021,7 +2024,7 @@ along with GNU Emacs. If not, see . Local variables: -coding: utf-8 +coding: us-ascii mode: outline paragraph-separate: "[ ]*$" end: diff --git a/nextstep/README b/nextstep/README index 65e7157..7a1a092 100644 --- a/nextstep/README +++ b/nextstep/README @@ -15,7 +15,7 @@ adapted to GNUstep, a free OpenStep implementation, and in 2008 it was merged to the GNU Emacs trunk and released with Emacs 23. Around the same time a separate Mac-only port using the Carbon APIs and descending from a 2001 MacOS 8/9 port of Emacs 21 was removed. (It -remains available externally under the name “mac”.) +remains available externally under the name "mac".) OVERVIEW OF COCOA AND OBJECTIVE-C @@ -25,11 +25,11 @@ superset of C. Anybody with experience with iOS or modern OS X application development should feel at home. A method call in Objective-C differs from most other languages in the -fact that it doesn’t have a normal name. Instead, the method name is +fact that it doesn't have a normal name. Instead, the method name is made up of the name of each parameter. An exception to this rule are methods without parameters. -The following calls a method in the object ‘anObject’. +The following calls a method in the object 'anObject'. [anObject alpha:1 beta:2 gamma:3]; @@ -55,8 +55,8 @@ Classes are declared like the following: modify the NS code over a long period of time. Keep the code simple and avoid language constructs that makes the code hard to maintain. -* Don’t use macros and types intended for the XCode Interface Builder, - like ‘IBAction’. +* Don't use macros and types intended for the XCode Interface Builder, + like 'IBAction'. * The NS interface should work on all version of OS X from 10.6.8 (Snow Leopard) to the latest official release. @@ -70,8 +70,8 @@ Classes are declared like the following: The NS interface features a printf-based trace package that prints the call tree of selected functions in the Cocoa interface, plus various extra information. It can be enabled by uncommenting the line -defining ‘NSTRACE_ENABLED’ in nsterm.h. To enable more output, -uncomment the lines defining symbols starting with ‘NSTRACE_GROUP’. +defining 'NSTRACE_ENABLED' in "nsterm.h". To enable more output, +uncomment the lines defining symbols starting with 'NSTRACE_GROUP'. GNUSTEP AND OTHER COMPATIBLE SYSTEMS @@ -121,8 +121,3 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU Emacs. If not, see . - - -Local variables: -coding: utf-8 -end: commit 5cc691930808ccf7afdbc53ed49ca24badd97013 Author: Alan Mackenzie Date: Mon Mar 14 21:44:11 2016 +0000 Fix a cacheing bug, which led to inordinately slow c-beginning-of-defun. * lisp/progmodes/cc-defs.el (c-self-bind-state-cache): New macro. * lisp/progmodes/cc-engine.el (c-ssb-lit-begin): Always call c-parse-state rather than just using the cache variable c-state-cache. (c-syntactic-skip-backward): Invoke c-self-bind-state-cache to isolate calls to c-parse-state from other uses of the parse state cache. * lisp/progmodes/cc-cmds.el (c-beginning-of-defun, c-end-of-defun): Invoke c-self-bind-state-cache around the processing, replacing flawed bindings of c-state-cache. diff --git a/lisp/progmodes/cc-cmds.el b/lisp/progmodes/cc-cmds.el index 6761de1..764f44a 100644 --- a/lisp/progmodes/cc-cmds.el +++ b/lisp/progmodes/cc-cmds.el @@ -1594,69 +1594,70 @@ defun." (c-region-is-active-p) (push-mark)) - (c-save-buffer-state - (beginning-of-defun-function end-of-defun-function - (start (point)) - (paren-state (copy-tree (c-parse-state))) ; This must not share list - ; structure with other users of c-state-cache. - (orig-point-min (point-min)) (orig-point-max (point-max)) - lim ; Position of { which has been widened to. - where pos case-fold-search) - - (save-restriction - (if (eq c-defun-tactic 'go-outward) - (setq lim (c-widen-to-enclosing-decl-scope ; e.g. class, namespace. - paren-state orig-point-min orig-point-max))) - - ;; Move back out of any macro/comment/string we happen to be in. - (c-beginning-of-macro) - (setq pos (c-literal-limits)) - (if pos (goto-char (car pos))) - - (setq where (c-where-wrt-brace-construct)) - - (if (< arg 0) - ;; Move forward to the closing brace of a function. - (progn - (if (memq where '(at-function-end outwith-function)) - (setq arg (1+ arg))) - (if (< arg 0) - (c-while-widening-to-decl-block - (< (setq arg (- (c-forward-to-nth-EOF-} (- arg) where))) 0))) - ;; Move forward to the next opening brace.... - (when (and (= arg 0) - (progn - (c-while-widening-to-decl-block - (not (c-syntactic-re-search-forward "{" nil 'eob))) - (eq (char-before) ?{))) - (backward-char) - ;; ... and backward to the function header. - (c-beginning-of-decl-1) - t)) - - ;; Move backward to the opening brace of a function, making successively - ;; larger portions of the buffer visible as necessary. - (when (> arg 0) - (c-while-widening-to-decl-block - (> (setq arg (c-backward-to-nth-BOF-{ arg where)) 0))) - - (when (eq arg 0) - ;; Go backward to this function's header. - (c-beginning-of-decl-1) - - (setq pos (point)) - ;; We're now there, modulo comments and whitespace. - ;; Try to be line oriented; position point at the closest - ;; preceding boi that isn't inside a comment, but if we hit - ;; the previous declaration then we use the current point - ;; instead. - (while (and (/= (point) (c-point 'boi)) - (c-backward-single-comment))) - (if (/= (point) (c-point 'boi)) - (goto-char pos))) - - (c-keep-region-active) - (= arg 0))))) + (c-self-bind-state-cache ; We must not share with other users of c-state-cache. + (c-save-buffer-state + (beginning-of-defun-function + end-of-defun-function + (start (point)) + (paren-state (c-parse-state)) + (orig-point-min (point-min)) (orig-point-max (point-max)) + lim ; Position of { which has been widened to. + where pos case-fold-search) + + (save-restriction + (if (eq c-defun-tactic 'go-outward) + (setq lim (c-widen-to-enclosing-decl-scope ; e.g. class, namespace. + paren-state orig-point-min orig-point-max))) + + ;; Move back out of any macro/comment/string we happen to be in. + (c-beginning-of-macro) + (setq pos (c-literal-limits)) + (if pos (goto-char (car pos))) + + (setq where (c-where-wrt-brace-construct)) + + (if (< arg 0) + ;; Move forward to the closing brace of a function. + (progn + (if (memq where '(at-function-end outwith-function)) + (setq arg (1+ arg))) + (if (< arg 0) + (c-while-widening-to-decl-block + (< (setq arg (- (c-forward-to-nth-EOF-} (- arg) where))) 0))) + ;; Move forward to the next opening brace.... + (when (and (= arg 0) + (progn + (c-while-widening-to-decl-block + (not (c-syntactic-re-search-forward "{" nil 'eob))) + (eq (char-before) ?{))) + (backward-char) + ;; ... and backward to the function header. + (c-beginning-of-decl-1) + t)) + + ;; Move backward to the opening brace of a function, making successively + ;; larger portions of the buffer visible as necessary. + (when (> arg 0) + (c-while-widening-to-decl-block + (> (setq arg (c-backward-to-nth-BOF-{ arg where)) 0))) + + (when (eq arg 0) + ;; Go backward to this function's header. + (c-beginning-of-decl-1) + + (setq pos (point)) + ;; We're now there, modulo comments and whitespace. + ;; Try to be line oriented; position point at the closest + ;; preceding boi that isn't inside a comment, but if we hit + ;; the previous declaration then we use the current point + ;; instead. + (while (and (/= (point) (c-point 'boi)) + (c-backward-single-comment))) + (if (/= (point) (c-point 'boi)) + (goto-char pos))) + + (c-keep-region-active) + (= arg 0)))))) (defun c-forward-to-nth-EOF-} (n where) ;; Skip to the closing brace of the Nth function after point. If @@ -1718,66 +1719,68 @@ the open-parenthesis that starts a defun; see `beginning-of-defun'." (c-region-is-active-p) (push-mark)) - (c-save-buffer-state - (beginning-of-defun-function end-of-defun-function - (start (point)) - (paren-state (copy-tree (c-parse-state))) ; This must not share list - ; structure with other users of c-state-cache. - (orig-point-min (point-min)) (orig-point-max (point-max)) - lim - where pos case-fold-search) - - (save-restriction - (if (eq c-defun-tactic 'go-outward) - (setq lim (c-widen-to-enclosing-decl-scope ; e.g. class, namespace - paren-state orig-point-min orig-point-max))) - - ;; Move back out of any macro/comment/string we happen to be in. - (c-beginning-of-macro) - (setq pos (c-literal-limits)) - (if pos (goto-char (car pos))) - - (setq where (c-where-wrt-brace-construct)) + (c-self-bind-state-cache ; c-state-cache's list structure must not be shared + ; with other users. + (c-save-buffer-state + (beginning-of-defun-function + end-of-defun-function + (start (point)) + (paren-state (c-parse-state)) + (orig-point-min (point-min)) (orig-point-max (point-max)) + lim + where pos case-fold-search) + + (save-restriction + (if (eq c-defun-tactic 'go-outward) + (setq lim (c-widen-to-enclosing-decl-scope ; e.g. class, namespace + paren-state orig-point-min orig-point-max))) + + ;; Move back out of any macro/comment/string we happen to be in. + (c-beginning-of-macro) + (setq pos (c-literal-limits)) + (if pos (goto-char (car pos))) + + (setq where (c-where-wrt-brace-construct)) + + (if (< arg 0) + ;; Move backwards to the } of a function + (progn + (if (memq where '(at-header outwith-function)) + (setq arg (1+ arg))) + (if (< arg 0) + (c-while-widening-to-decl-block + (< (setq arg (- (c-backward-to-nth-BOF-{ (- arg) where))) 0))) + (if (= arg 0) + (c-while-widening-to-decl-block + (progn (c-syntactic-skip-backward "^}") + (not (eq (char-before) ?})))))) + + ;; Move forward to the } of a function + (if (> arg 0) + (c-while-widening-to-decl-block + (> (setq arg (c-forward-to-nth-EOF-} arg where)) 0)))) + + ;; Do we need to move forward from the brace to the semicolon? + (when (eq arg 0) + (if (c-in-function-trailer-p) ; after "}" of struct/enum, etc. + (c-syntactic-re-search-forward ";")) - (if (< arg 0) - ;; Move backwards to the } of a function - (progn - (if (memq where '(at-header outwith-function)) - (setq arg (1+ arg))) - (if (< arg 0) - (c-while-widening-to-decl-block - (< (setq arg (- (c-backward-to-nth-BOF-{ (- arg) where))) 0))) - (if (= arg 0) - (c-while-widening-to-decl-block - (progn (c-syntactic-skip-backward "^}") - (not (eq (char-before) ?})))))) - - ;; Move forward to the } of a function - (if (> arg 0) - (c-while-widening-to-decl-block - (> (setq arg (c-forward-to-nth-EOF-} arg where)) 0)))) - - ;; Do we need to move forward from the brace to the semicolon? - (when (eq arg 0) - (if (c-in-function-trailer-p) ; after "}" of struct/enum, etc. - (c-syntactic-re-search-forward ";")) + (setq pos (point)) + ;; We're there now, modulo comments and whitespace. + ;; Try to be line oriented; position point after the next + ;; newline that isn't inside a comment, but if we hit the + ;; next declaration then we use the current point instead. + (while (and (not (bolp)) + (not (looking-at "\\s *$")) + (c-forward-single-comment))) + (cond ((bolp)) + ((looking-at "\\s *$") + (forward-line 1)) + (t + (goto-char pos)))) - (setq pos (point)) - ;; We're there now, modulo comments and whitespace. - ;; Try to be line oriented; position point after the next - ;; newline that isn't inside a comment, but if we hit the - ;; next declaration then we use the current point instead. - (while (and (not (bolp)) - (not (looking-at "\\s *$")) - (c-forward-single-comment))) - (cond ((bolp)) - ((looking-at "\\s *$") - (forward-line 1)) - (t - (goto-char pos)))) - - (c-keep-region-active) - (= arg 0)))) + (c-keep-region-active) + (= arg 0))))) (defun c-defun-name () "Return the name of the current defun, or NIL if there isn't one. diff --git a/lisp/progmodes/cc-defs.el b/lisp/progmodes/cc-defs.el index 000995c..3b9f44e 100644 --- a/lisp/progmodes/cc-defs.el +++ b/lisp/progmodes/cc-defs.el @@ -1258,7 +1258,8 @@ been put there by c-put-char-property. POINT remains unchanged." (def-edebug-spec c-clear-char-property t) (def-edebug-spec c-clear-char-properties t) (def-edebug-spec c-put-overlay t) -(def-edebug-spec c-delete-overlay t) ;)) +(def-edebug-spec c-delete-overlay t) +(def-edebug-spec c-self-bind-state-cache t);)) ;;; Functions. @@ -1397,6 +1398,26 @@ been put there by c-put-char-property. POINT remains unchanged." (save-restriction (widen) (c-set-cpp-delimiters ,beg ,end))))) + +(defmacro c-self-bind-state-cache (&rest forms) + ;; Bind the state cache to itself and execute the FORMS. It is assumed that no + ;; buffer changes will happen in FORMS, and no hidden buffer changes which could + ;; affect the parsing will be made by FORMS. + `(let ((c-state-cache (copy-tree c-state-cache)) + (c-state-cache-good-pos c-state-cache-good-pos) + ;(c-state-nonlit-pos-cache (copy-tree c-state-nonlit-pos-cache)) + ;(c-state-nonlit-pos-cache-limit c-state-nonlit-pos-cache-limit) + ;(c-state-semi-nonlit-pos-cache (copy-treec c-state-semi-nonlit-pos-cache)) + ;(c-state-semi-nonlit-pos-cache-limit c-state-semi-nonlit-pos-cache) + (c-state-brace-pair-desert (copy-tree c-state-brace-pair-desert)) + (c-state-point-min c-state-point-min) + (c-state-point-min-lit-type c-state-point-min-lit-type) + (c-state-point-min-lit-start c-state-point-min-lit-start) + (c-state-min-scan-pos c-state-min-scan-pos) + (c-state-old-cpp-beg c-state-old-cpp-beg) + (c-state-old-cpp-end c-state-old-cpp-end)) + ,@forms)) + ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; The following macros are to be used only in `c-parse-state' and its diff --git a/lisp/progmodes/cc-engine.el b/lisp/progmodes/cc-engine.el index 69a2a53..afe87c5 100644 --- a/lisp/progmodes/cc-engine.el +++ b/lisp/progmodes/cc-engine.el @@ -4259,8 +4259,7 @@ comment at the start of cc-engine.el for more info." (setq safe-pos-list (cdr safe-pos-list))) (unless (setq safe-pos (car-safe safe-pos-list)) (setq safe-pos (max (or (c-safe-position - (point) (or c-state-cache - (c-parse-state))) + (point) (c-parse-state)) 0) (point-min)) safe-pos-list (list safe-pos))) @@ -4308,107 +4307,108 @@ Non-nil is returned if the point moved, nil otherwise. Note that this function might do hidden buffer changes. See the comment at the start of cc-engine.el for more info." - (let ((start (point)) - state-2 - ;; A list of syntactically relevant positions in descending - ;; order. It's used to avoid scanning repeatedly over - ;; potentially large regions with `parse-partial-sexp' to verify - ;; each position. Used in `c-ssb-lit-begin' - safe-pos-list - ;; The result from `c-beginning-of-macro' at the start position or the - ;; start position itself if it isn't within a macro. Evaluated on - ;; demand. - start-macro-beg - ;; The earliest position after the current one with the same paren - ;; level. Used only when `paren-level' is set. - lit-beg - (paren-level-pos (point))) - - (while - (progn - ;; The next loop "tries" to find the end point each time round, - ;; loops when it hasn't succeeded. - (while - (and - (let ((pos (point))) - (while (and - (< (skip-chars-backward skip-chars limit) 0) - ;; Don't stop inside a literal. - (when (setq lit-beg (c-ssb-lit-begin)) - (goto-char lit-beg) - t))) - (< (point) pos)) + (c-self-bind-state-cache + (let ((start (point)) + state-2 + ;; A list of syntactically relevant positions in descending + ;; order. It's used to avoid scanning repeatedly over + ;; potentially large regions with `parse-partial-sexp' to verify + ;; each position. Used in `c-ssb-lit-begin' + safe-pos-list + ;; The result from `c-beginning-of-macro' at the start position or the + ;; start position itself if it isn't within a macro. Evaluated on + ;; demand. + start-macro-beg + ;; The earliest position after the current one with the same paren + ;; level. Used only when `paren-level' is set. + lit-beg + (paren-level-pos (point))) + + (while + (progn + ;; The next loop "tries" to find the end point each time round, + ;; loops when it hasn't succeeded. + (while + (and + (let ((pos (point))) + (while (and + (< (skip-chars-backward skip-chars limit) 0) + ;; Don't stop inside a literal. + (when (setq lit-beg (c-ssb-lit-begin)) + (goto-char lit-beg) + t))) + (< (point) pos)) + + (let ((pos (point)) state-2 pps-end-pos) - (let ((pos (point)) state-2 pps-end-pos) + (cond + ((and paren-level + (save-excursion + (setq state-2 (parse-partial-sexp + pos paren-level-pos -1) + pps-end-pos (point)) + (/= (car state-2) 0))) + ;; Not at the right level. + + (if (and (< (car state-2) 0) + ;; We stop above if we go out of a paren. + ;; Now check whether it precedes or is + ;; nested in the starting sexp. + (save-excursion + (setq state-2 + (parse-partial-sexp + pps-end-pos paren-level-pos + nil nil state-2)) + (< (car state-2) 0))) + + ;; We've stopped short of the starting position + ;; so the hit was inside a nested list. Go up + ;; until we are at the right level. + (condition-case nil + (progn + (goto-char (scan-lists pos -1 + (- (car state-2)))) + (setq paren-level-pos (point)) + (if (and limit (>= limit paren-level-pos)) + (progn + (goto-char limit) + nil) + t)) + (error + (goto-char (or limit (point-min))) + nil)) + + ;; The hit was outside the list at the start + ;; position. Go to the start of the list and exit. + (goto-char (1+ (elt state-2 1))) + nil)) + + ((c-beginning-of-macro limit) + ;; Inside a macro. + (if (< (point) + (or start-macro-beg + (setq start-macro-beg + (save-excursion + (goto-char start) + (c-beginning-of-macro limit) + (point))))) + t + + ;; It's inside the same macro we started in so it's + ;; a relevant match. + (goto-char pos) + nil)))))) - (cond - ((and paren-level - (save-excursion - (setq state-2 (parse-partial-sexp - pos paren-level-pos -1) - pps-end-pos (point)) - (/= (car state-2) 0))) - ;; Not at the right level. - - (if (and (< (car state-2) 0) - ;; We stop above if we go out of a paren. - ;; Now check whether it precedes or is - ;; nested in the starting sexp. - (save-excursion - (setq state-2 - (parse-partial-sexp - pps-end-pos paren-level-pos - nil nil state-2)) - (< (car state-2) 0))) - - ;; We've stopped short of the starting position - ;; so the hit was inside a nested list. Go up - ;; until we are at the right level. - (condition-case nil - (progn - (goto-char (scan-lists pos -1 - (- (car state-2)))) - (setq paren-level-pos (point)) - (if (and limit (>= limit paren-level-pos)) - (progn - (goto-char limit) - nil) - t)) - (error - (goto-char (or limit (point-min))) - nil)) - - ;; The hit was outside the list at the start - ;; position. Go to the start of the list and exit. - (goto-char (1+ (elt state-2 1))) - nil)) - - ((c-beginning-of-macro limit) - ;; Inside a macro. - (if (< (point) - (or start-macro-beg - (setq start-macro-beg - (save-excursion - (goto-char start) - (c-beginning-of-macro limit) - (point))))) - t - - ;; It's inside the same macro we started in so it's - ;; a relevant match. - (goto-char pos) - nil)))))) - - (> (point) - (progn - ;; Skip syntactic ws afterwards so that we don't stop at the - ;; end of a comment if `skip-chars' is something like "^/". - (c-backward-syntactic-ws) - (point))))) + (> (point) + (progn + ;; Skip syntactic ws afterwards so that we don't stop at the + ;; end of a comment if `skip-chars' is something like "^/". + (c-backward-syntactic-ws) + (point))))) - ;; We might want to extend this with more useful return values in - ;; the future. - (/= (point) start))) + ;; We might want to extend this with more useful return values in + ;; the future. + (/= (point) start)))) ;; The following is an alternative implementation of ;; `c-syntactic-skip-backward' that uses backward movement to keep commit 0ce37eac45f8b1279e89e854f71bb3f35fd43d29 Author: Kaushal Modi Date: Mon Mar 14 20:15:17 2016 +0200 Fix Isearch prompt when invoked with an argument * lisp/isearch.el (isearch--describe-regexp-mode): With `search-default-mode' set to nil, if user does C-u C-s, the minibuffer now displays "Regexp I-search: " again. But if the user has set `search-default-mode' to t, and then does C-s, the minibuffer now displays "I-search: " because the default search mode is now regexp mode. Comments have been added to explain the priority of conditions in the `cond' form. (Bug#22991) diff --git a/lisp/isearch.el b/lisp/isearch.el index b8ada2c..988503e 100644 --- a/lisp/isearch.el +++ b/lisp/isearch.el @@ -2574,15 +2574,26 @@ the word mode." (when (eq regexp-function t) (setq regexp-function #'word-search-regexp)) (let ((description - ;; Don't use a description on the default search mode. - (cond ((equal regexp-function search-default-mode) "") + (cond + ;; 1. Do not use a description on the default search mode, + ;; but only if the default search mode is non-nil. + ((or (and search-default-mode + (equal search-default-mode regexp-function)) + ;; Special case where `search-default-mode' is t + ;; (defaults to regexp searches). + (and (eq search-default-mode t) + (eq search-default-mode isearch-regexp))) "") + ;; 2. Use the `isearch-message-prefix' set for + ;; `regexp-function' if available. (regexp-function (and (symbolp regexp-function) (or (get regexp-function 'isearch-message-prefix) ""))) + ;; 3. Else if `isearch-regexp' is non-nil, set description + ;; to "regexp ". (isearch-regexp "regexp ") - ;; We're in literal mode. If the default mode is not - ;; literal, then describe it. + ;; 4. And finally, if we're in literal mode (and if the + ;; default mode is also not literal), describe it. ((functionp search-default-mode) "literal ")))) (if space-before ;; Move space from the end to the beginning. commit f3033d4d028c1cd7c36ce9e9aa82f4a6c33f57c7 Author: Cesar Quiroz Date: Mon Mar 14 19:45:29 2016 +0200 Fix a typo in the Emacs manual * doc/emacs/maintaining.texi (VC Directory Commands): Fix a typo in a command name. Copyright-paperwork-exempt: yes diff --git a/doc/emacs/maintaining.texi b/doc/emacs/maintaining.texi index 887960e..797b53f 100644 --- a/doc/emacs/maintaining.texi +++ b/doc/emacs/maintaining.texi @@ -1289,15 +1289,15 @@ whose state is that of the item at point. @findex vc-dir-mark @findex vc-dir-mark-all-files While in the VC Directory buffer, all the files that you mark with -@kbd{m} (@code{vc-dir-mark}) or @kbd{M} (@code{vc-dir-mark}) are in -the current VC fileset. If you mark a directory entry with @kbd{m}, -all the listed files in that directory tree are in the current VC -fileset. The files and directories that belong to the current VC -fileset are indicated with a @samp{*} character in the VC Directory -buffer, next to their VC status. In this way, you can set up a -multi-file VC fileset to be acted on by VC commands like @w{@kbd{C-x v -v}} (@pxref{Basic VC Editing}), @w{@kbd{C-x v =}} (@pxref{Old -Revisions}), and @w{@kbd{C-x v u}} (@pxref{VC Undo}). +@kbd{m} (@code{vc-dir-mark}) or @kbd{M} (@code{vc-dir-mark-all-files}) +are in the current VC fileset. If you mark a directory entry with +@kbd{m}, all the listed files in that directory tree are in the +current VC fileset. The files and directories that belong to the +current VC fileset are indicated with a @samp{*} character in the VC +Directory buffer, next to their VC status. In this way, you can set +up a multi-file VC fileset to be acted on by VC commands like +@w{@kbd{C-x v v}} (@pxref{Basic VC Editing}), @w{@kbd{C-x v =}} +(@pxref{Old Revisions}), and @w{@kbd{C-x v u}} (@pxref{VC Undo}). The VC Directory buffer also defines some single-key shortcuts for VC commands with the @kbd{C-x v} prefix: @kbd{=}, @kbd{+}, @kbd{l}, commit 4235d2d9eaa3b64d3172f6c60f1e71704795af89 Author: Paul Eggert Date: Mon Mar 14 09:30:01 2016 -0700 Curved quotes in etc/NEWS etc. * etc/NEWS, nextstep/README: Prefer curved quotes in the recently-changed text documentation. See: http://lists.gnu.org/archive/html/emacs-devel/2016-03/msg00860.html diff --git a/etc/NEWS b/etc/NEWS index 0b2ea6c..8f271f5 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -12,7 +12,7 @@ See file HISTORY for a list of GNU Emacs versions and release dates. See files NEWS.24, NEWS.23, NEWS.22, NEWS.21, NEWS.20, NEWS.19, NEWS.18, and NEWS.1-17 for changes in older Emacs versions. -You can narrow news to a specific version by calling 'view-emacs-news' +You can narrow news to a specific version by calling ‘view-emacs-news’ with a prefix argument or by typing C-u C-h C-n. Temporary note: @@ -58,54 +58,54 @@ obstacles to maintenance and development. GC_MARK_STACK and its related symbols have been removed from the C internals. --- -** 'configure' now prefers gnustep-config when configuring GNUstep. +** ‘configure’ now prefers gnustep-config when configuring GNUstep. If gnustep-config is not available, the old heuristics are used. --- -** 'configure' now prefers inotify to gfile for file notification, +** ‘configure’ now prefers inotify to gfile for file notification, unless gfile is explicitly requested via --with-file-notification='gfile'. --- -** 'configure' detects the kqueue file notification library on *BSD +** ‘configure’ detects the kqueue file notification library on *BSD and Mac OS X machines. --- -** The configure option '--with-pkg-config-prog' has been removed. -Use './configure PKG_CONFIG=/full/name/of/pkg-config' if you need to. +** The configure option ‘--with-pkg-config-prog’ has been removed. +Use ‘./configure PKG_CONFIG=/full/name/of/pkg-config’ if you need to. --- -** The configure option '--with-mmdf' has been removed. +** The configure option ‘--with-mmdf’ has been removed. It was no longer useful, as it relied on libraries that are no longer supported, and its presence led to confusion during configuration. -This affects only the 'movemail' utility; Emacs itself can still +This affects only the ‘movemail’ utility; Emacs itself can still process MMDF-format files as before. +++ -** The configure option '--enable-silent-rules' is now the default, +** The configure option ‘--enable-silent-rules’ is now the default, and silent rules are now quieter. To get the old behavior where -'make' chatters a lot, configure with '--disable-silent-rules' or -build with 'make V=1'. +‘make’ chatters a lot, configure with ‘--disable-silent-rules’ or +build with ‘make V=1’. --- -** The configure option '--with-gameuser' now allows you to specify a -group instead of a user if its argument is prefixed by ':' (a colon). +** The configure option ‘--with-gameuser’ now allows you to specify a +group instead of a user if its argument is prefixed by ‘:’ (a colon). This will cause the game score files in ${localstatedir}/games/emacs to be owned by that group, and the helper program for updating them to -be installed setgid. The option now defaults to the 'games' group. +be installed setgid. The option now defaults to the ‘games’ group. --- -** The 'grep-changelog' script (and its manual page) are no longer included. +** The ‘grep-changelog’ script (and its manual page) are no longer included. It has no particular connection to Emacs and has not changed in years, so if you want to use it, you can always take a copy from an older Emacs. --- ** Emacs 25 comes with a new set of icons. Various resolutions are available as etc/images/icons/hicolor/*/apps/emacs.png. -The old Emacs logo icons are available as 'emacs23.png' in the same location. +The old Emacs logo icons are available as ‘emacs23.png’ in the same location. --- -** New make target 'check-expensive' to run additional tests. -This includes all tests which run via "make check", plus additional +** New make target ‘check-expensive’ to run additional tests. +This includes all tests which run via ‘make check’, plus additional tests which take more time to perform. @@ -113,14 +113,14 @@ tests which take more time to perform. +++ ** When Emacs is given a file as a command line argument and -'initial-buffer-choice' is non-nil, display both the file and -'initial-buffer-choice'. When Emacs is given more than one file and -'initial-buffer-choice' is non-nil, show 'initial-buffer-choice' +‘initial-buffer-choice’ is non-nil, display both the file and +‘initial-buffer-choice’. When Emacs is given more than one file and +‘initial-buffer-choice’ is non-nil, show ‘initial-buffer-choice’ and *Buffer List*. This makes Emacs convenient to use from the -command line when 'initial-buffer-choice' is non-nil. +command line when ‘initial-buffer-choice’ is non-nil. +++ -** The value of 'initial-scratch-message' is now treated as a doc string +** The value of ‘initial-scratch-message’ is now treated as a doc string and can contain escape sequences for command keys, quotes, and the like. @@ -129,61 +129,61 @@ and can contain escape sequences for command keys, quotes, and the like. +++ ** Xwidgets: a new feature for embedding native widgets inside Emacs buffers. If you have gtk3 and webkitgtk3 installed, and Emacs was built with -xwidget support, you can access the embedded webkit browser with 'M-x -xwidget-webkit-browse-url'. This opens a new buffer with the embedded -browser. The buffer will have a new mode, 'xwidget-webkit-mode' -(similar to 'image-mode'), which supports the webkit widget. +xwidget support, you can access the embedded webkit browser with ‘M-x +xwidget-webkit-browse-url’. This opens a new buffer with the embedded +browser. The buffer will have a new mode, ‘xwidget-webkit-mode’ +(similar to ‘image-mode’), which supports the webkit widget. +++ -*** New functions for xwidget-webkit mode 'xwidget-webkit-insert-string', -'xwidget-webkit-adjust-size-dispatch', 'xwidget-webkit-back', -'xwidget-webkit-browse-url', 'xwidget-webkit-reload', -'xwidget-webkit-current-url', 'xwidget-webkit-scroll-backward', -'xwidget-webkit-scroll-forward', 'xwidget-webkit-scroll-down', -'xwidget-webkit-scroll-up'. +*** New functions for xwidget-webkit mode ‘xwidget-webkit-insert-string’, +‘xwidget-webkit-adjust-size-dispatch’, ‘xwidget-webkit-back’, +‘xwidget-webkit-browse-url’, ‘xwidget-webkit-reload’, +‘xwidget-webkit-current-url’, ‘xwidget-webkit-scroll-backward’, +‘xwidget-webkit-scroll-forward’, ‘xwidget-webkit-scroll-down’, +‘xwidget-webkit-scroll-up’. +++ ** Emacs can now load shared/dynamic libraries (modules). A dynamic Emacs module is a shared library that provides additional functionality for use in Emacs Lisp programs, just like a package -written in Emacs Lisp would. The functions 'load', 'require', -'load-file', etc. were extended to load such modules, as they do with -Emacs Lisp packages. The new variable 'module-file-suffix' holds the -system-dependent value of the file-name extension ('.so' on Posix +written in Emacs Lisp would. The functions ‘load’, ‘require’, +‘load-file’, etc. were extended to load such modules, as they do with +Emacs Lisp packages. The new variable ‘module-file-suffix’ holds the +system-dependent value of the file-name extension (‘.so’ on Posix hosts) of the module files. A module should export a C-callable function named -'emacs_module_init', which Emacs will call as part of the call to -'load' or 'require' which loads the module. It should also export a -symbol named 'plugin_is_GPL_compatible' to indicate that its code is +‘emacs_module_init’, which Emacs will call as part of the call to +‘load’ or ‘require’ which loads the module. It should also export a +symbol named ‘plugin_is_GPL_compatible’ to indicate that its code is released under the GPL or compatible license; Emacs will refuse to -load modules that don't export such a symbol. +load modules that don’t export such a symbol. If a module needs to call Emacs functions, it should do so through the -API defined and documented in the header file 'emacs-module.h'. Note +API defined and documented in the header file ‘emacs-module.h’. Note that any module that provides Lisp-callable functions will have to use -Emacs functions such as 'fset' and 'funcall', in order to register its +Emacs functions such as ‘fset’ and ‘funcall’, in order to register its functions with the Emacs Lisp interpreter. -Modules can create 'user-ptr' Lisp objects that embed pointers to C +Modules can create ‘user-ptr’ Lisp objects that embed pointers to C structs defined by the module. This is useful for keeping around complex data structures created by a module, to be passed back to the -module's functions. User-ptr objects can also have associated -"finalizers" -- functions to be run when the object is GC'ed; this is +module’s functions. User-ptr objects can also have associated +“finalizers” -- functions to be run when the object is GC’ed; this is useful for freeing any resources allocated for the underlying data structure, such as memory, open file descriptors, etc. A new -predicate 'user-ptrp' returns non-nil if its argument is a 'user-ptr' +predicate ‘user-ptrp’ returns non-nil if its argument is a ‘user-ptr’ object. Loadable modules in Emacs are an experimental feature, and subject to change in future releases. For that reason, their support is disabled -by default, and must be enabled by using the '--with-modules' option +by default, and must be enabled by using the ‘--with-modules’ option at configure time. +++ ** Network security (TLS/SSL certificate validity and the like) is added via the new Network Security Manager (NSM) and controlled via -the 'network-security-level' variable. +the ‘network-security-level’ variable. +++ ** C-h l now also lists the commands that were run. @@ -193,50 +193,50 @@ the 'network-security-level' variable. and x-select-enable-primary is renamed select-enable-primary. Additionally they both now apply to all systems (OSX, GNUstep, Windows, you name it), with the proviso that on some systems (e.g. Windows) -select-enable-primary is ineffective since the system doesn't +select-enable-primary is ineffective since the system doesn’t have the equivalent of a primary selection. +++ -** New option 'switch-to-buffer-in-dedicated-window' allows you to -customize how 'switch-to-buffer' proceeds interactively when the +** New option ‘switch-to-buffer-in-dedicated-window’ allows you to +customize how ‘switch-to-buffer’ proceeds interactively when the selected window is strongly dedicated to its buffer. +++ -** The option 'even-window-heights' has been renamed to -'even-window-sizes' and now handles window widths as well. +** The option ‘even-window-heights’ has been renamed to +‘even-window-sizes’ and now handles window widths as well. +++ ** terpri gets an optional arg ENSURE to conditionally output a newline. +++ -** 'insert-register' now leaves point after the inserted text +** ‘insert-register’ now leaves point after the inserted text when called interactively. A prefix argument toggles this behavior. +++ -** The new variable 'term-file-aliases' replaces some files from lisp/term. -The function 'tty-run-terminal-initialization' consults this variable +** The new variable ‘term-file-aliases’ replaces some files from lisp/term. +The function ‘tty-run-terminal-initialization’ consults this variable when deciding what terminal-specific initialization code to run. --- -** New variable 'system-configuration-features', listing some of the +** New variable ‘system-configuration-features’, listing some of the main features that Emacs was compiled with. This is mainly intended for use in Emacs bug reports. +++ ** A password is now hidden also when typed in batch mode. Another -hiding character but the default '.' can be used by let-binding the -variable 'read-hide-char'. +hiding character but the default ‘.’ can be used by let-binding the +variable ‘read-hide-char’. +++ ** The Emacs pseudo-random number generator can be securely seeded. On system where Emacs can access the system entropy or some other -cryptographically secure random stream, it now uses that when 'random' -is called with its argument 't'. This allows cryptographically strong +cryptographically secure random stream, it now uses that when ‘random’ +is called with its argument ‘t’. This allows cryptographically strong random values; in particular, the Emacs server now uses this facility to produce its authentication key. --- -** New input methods: 'tamil-dvorak' and 'programmer-dvorak'. +** New input methods: ‘tamil-dvorak’ and ‘programmer-dvorak’. * Editing Changes in Emacs 25.1 @@ -249,17 +249,17 @@ to produce its authentication key. +++ *** Successive single-char deletions are collapsed in the undo-log just like successive char insertions. Which commands invoke this behavior is -controlled by the new 'undo-auto-amalgamate' function. See the node -"Undo" in the ELisp manual for more details. +controlled by the new ‘undo-auto-amalgamate’ function. See the node +‘‘Undo’’ in the ELisp manual for more details. +++ -*** The heuristic used to insert 'undo-boundary' after each command +*** The heuristic used to insert ‘undo-boundary’ after each command has changed, so that if a command causes changes in more than just the -current buffer, Emacs now calls 'undo-boundary' in every buffer +current buffer, Emacs now calls ‘undo-boundary’ in every buffer affected by the command. +++ -** New command 'comment-line' bound to 'C-x C-;'. +** New command ‘comment-line’ bound to ‘C-x C-;’. ** New and improved facilities for inserting Unicode characters @@ -272,13 +272,13 @@ affected by the command. +++ *** New minor mode electric-quote-mode for quoting ‘like this’ and “like this” -as you type. See also the new variable 'text-quoting-style'. +as you type. See also the new variable ‘text-quoting-style’. --- ** New minor mode global-eldoc-mode is enabled by default. --- -** Emacs now uses "bracketed paste mode" on text terminals that support it. +** Emacs now uses “bracketed paste mode” on text terminals that support it. Bracketed paste mode causes text terminals to wrap pasted text in special escape sequences that allow Emacs to tell the difference between text you type and text you paste from other applications. Emacs then @@ -300,31 +300,31 @@ Bidirectional Parentheses Algorithm (BPA) specified by these Unicode standards. +++ -** You can access 'mouse-buffer-menu' (C-down-mouse-1) using C-f10. +** You can access ‘mouse-buffer-menu’ (C-down-mouse-1) using C-f10. +++ -** New buffer-local 'electric-pair-local-mode'. +** New buffer-local ‘electric-pair-local-mode’. +++ -** New variable 'fast-but-imprecise-scrolling' inhibits +** New variable ‘fast-but-imprecise-scrolling’ inhibits fontification during full screen scrolling operations, giving less hesitant operation during auto-repeat of C-v, M-v at the cost of possible inaccuracies in the end position. +++ -** New documentation command 'describe-symbol'. -Works for functions, variables, faces, etc. It is bound to 'C-h o' by +** New documentation command ‘describe-symbol’. +Works for functions, variables, faces, etc. It is bound to ‘C-h o’ by default. +++ -** New function 'custom-prompt-customize-unsaved-options' checks for +** New function ‘custom-prompt-customize-unsaved-options’ checks for unsaved customizations and prompts user to customize (if found). It -is intended for adding to 'kill-emacs-query-functions'. +is intended for adding to ‘kill-emacs-query-functions’. +++ -** The old 'C-x w' bindings in hi-lock-mode are officially deprecated -in favor of the global 'M-s h' bindings introduced in Emacs-23.1. -They'll disappear soon. +** The old ‘C-x w’ bindings in hi-lock-mode are officially deprecated +in favor of the global ‘M-s h’ bindings introduced in Emacs-23.1. +They’ll disappear soon. * Changes in Specialized Modes and Packages in Emacs 25.1 @@ -332,14 +332,14 @@ They'll disappear soon. ** Checkdoc +++ -*** New command 'checkdoc-package-keywords' checks if the +*** New command ‘checkdoc-package-keywords’ checks if the current package keywords are recognized. Set the new option -'checkdoc-package-keywords-flag' to non-nil to make -'checkdoc-current-buffer' call this function automatically. +‘checkdoc-package-keywords-flag’ to non-nil to make +‘checkdoc-current-buffer’ call this function automatically. +++ -*** New function 'checkdoc-file' checks for style errors. -It's meant for use together with 'compile': +*** New function ‘checkdoc-file’ checks for style errors. +It’s meant for use together with ‘compile’: emacs -batch --eval "(checkdoc-file \"subr.el\")" ** Desktop @@ -354,39 +354,39 @@ recommended to do this as soon as you have firmly upgraded to Emacs to version 206, you can do this with C-u C-u M-x desktop-save. +++ -** New function 'bookmark-set-no-overwrite' bound to C-x r M. +** New function ‘bookmark-set-no-overwrite’ bound to C-x r M. It raises an error if a bookmark of that name already exists, -unlike 'bookmark-set' which silently updates an existing bookmark. +unlike ‘bookmark-set’ which silently updates an existing bookmark. ** Gnus +++ -*** New user options 'mm-html-inhibit-images' and 'mm-html-blocked-images' +*** New user options ‘mm-html-inhibit-images’ and ‘mm-html-blocked-images’ now control how mm-* functions fetch and display images in an HTML -message. Gnus still uses 'gnus-inhibit-images' and 'gnus-blocked-images' +message. Gnus still uses ‘gnus-inhibit-images’ and ‘gnus-blocked-images’ for that purpose, i.e., binds mm-html- variables with those gnus- variables, but other packages do not have to bind gnus- variables now. --- -*** 'mm-inline-text-html-with-images' has been removed. -Use 'mm-html-inhibit-images' instead. Note that the value is opposite +*** ‘mm-inline-text-html-with-images’ has been removed. +Use ‘mm-html-inhibit-images’ instead. Note that the value is opposite in meaning. ** IMAP --- -*** 'imap-ssl-program' has been removed, and imap.el uses the internal +*** ‘imap-ssl-program’ has been removed, and imap.el uses the internal GnuTLS encryption functions if possible. ** JSON --- -*** 'json-pretty-print' and 'json-pretty-print-buffer' now maintain +*** ‘json-pretty-print’ and ‘json-pretty-print-buffer’ now maintain the ordering of object keys by default. --- -*** New commands 'json-pretty-print-ordered' and -'json-pretty-print-buffer-ordered' pretty prints JSON objects with +*** New commands ‘json-pretty-print-ordered’ and +‘json-pretty-print-buffer-ordered’ pretty prints JSON objects with object keys sorted alphabetically. +++ @@ -396,29 +396,29 @@ programming languages in the same buffer, like literate programming environments or ANTLR programs with embedded Python code. A major mode can provide indentation context for a sub-mode through -the 'prog-indentation-context' variable. To support this, modes that -provide indentation should use 'prog-widen' instead of 'widen' and -'prog-first-column' instead of a literal zero. See the node -"Mode-Specific Indent" in the ELisp manual for more details. +the ‘prog-indentation-context’ variable. To support this, modes that +provide indentation should use ‘prog-widen’ instead of ‘widen’ and +‘prog-first-column’ instead of a literal zero. See the node +“Mode-Specific Indent” in the ELisp manual for more details. ** Prettify Symbols mode +++ *** Prettify Symbols mode supports custom composition predicates. By -overriding the default 'prettify-symbols-compose-predicate', modes can +overriding the default ‘prettify-symbols-compose-predicate’, modes can specify in which contexts a symbol may be displayed as some Unicode -character. 'prettify-symbols-default-compose-p' is the default which +character. ‘prettify-symbols-default-compose-p’ is the default which is suitable for most programming languages such as C or Lisp (but not (La)TeX). +++ *** Symbols can be unprettified while point is inside them. -New variable 'prettify-symbols-unprettify-at-point' configures this. +New variable ‘prettify-symbols-unprettify-at-point’ configures this. ** Enhanced xterm support --- -*** The new variable 'xterm-screen-extra-capabilities' for configuring xterm. +*** The new variable ‘xterm-screen-extra-capabilities’ for configuring xterm. This variable tells Emacs which advanced capabilities are available in the xterm terminal emulator used to display Emacs text-mode frames. The default is to check each capability, and use it if available. @@ -428,32 +428,32 @@ its NEWS.) --- *** Killing text now also sets the CLIPBOARD/PRIMARY selection in the surrounding GUI (using the OSC-52 escape sequence). This only works -if your xterm supports it and enables the 'allowWindowOps' options (disabled +if your xterm supports it and enables the ‘allowWindowOps’ options (disabled by default at least in Debian, for security reasons). Similarly, you can yank the CLIPBOARD/PRIMARY selection (using the OSC-52 escape sequence) if your xterm has the feature enabled but for that you -additionally need to add 'getSelection' to 'xterm-extra-capabilities'. +additionally need to add ‘getSelection’ to ‘xterm-extra-capabilities’. +++ -*** 'xterm-mouse-mode' now supports mouse-tracking (if your xterm supports it). +*** ‘xterm-mouse-mode’ now supports mouse-tracking (if your xterm supports it). --- -** The way to turn on and off 'save-place' mode has changed. +** The way to turn on and off ‘save-place’ mode has changed. It is no longer sufficient to load the saveplace library and set -'save-place' non-nil. Instead, use the two new minor modes: -'save-place-mode' turns on saving last place in every file, and -'save-place-local-mode' does that only for the file in whose buffer it -is invoked. The 'save-place' variable is now an obsolete alias for -'save-place-mode', which replaces it, and 'toggle-save-place' is an -obsolete alias for the new 'save-place-local-mode' command. +‘save-place’ non-nil. Instead, use the two new minor modes: +‘save-place-mode’ turns on saving last place in every file, and +‘save-place-local-mode’ does that only for the file in whose buffer it +is invoked. The ‘save-place’ variable is now an obsolete alias for +‘save-place-mode’, which replaces it, and ‘toggle-save-place’ is an +obsolete alias for the new ‘save-place-local-mode’ command. ** ERC +++ *** ERC can now hide message types by network or channel. -'erc-hide-list' will hide all messages of the specified type, while -'erc-network-hide-list' and 'erc-channel-hide-list' will only hide the +‘erc-hide-list’ will hide all messages of the specified type, while +‘erc-network-hide-list’ and ‘erc-channel-hide-list’ will only hide the specified message types for the respective specified targets. --- @@ -468,14 +468,14 @@ being made case-sensitive in Emacs 24.2. --- *** New commands, key binds, and menu items. -**** '<' and '>' for navigating previous and next tracks in playlist +**** ‘<’ and ‘>’ for navigating previous and next tracks in playlist -**** New play/pause command 'mpc-toggle-play' bound to 's' +**** New play/pause command ‘mpc-toggle-play’ bound to ‘s’ -**** 'g' bound to new command 'mpc-seek-current' will navigate current +**** ‘g’ bound to new command ‘mpc-seek-current’ will navigate current track. -**** New commands 'mpc-toggle-{consume,repeat,single,shuffle}' for +**** New commands ‘mpc-toggle-{consume,repeat,single,shuffle}’ for toggling playback modes. --- @@ -493,7 +493,7 @@ MPD supports the XDG base directory specification since version 0.17.6. ** Midnight-mode --- -*** 'midnight-mode' is now a proper minor mode. +*** ‘midnight-mode’ is now a proper minor mode. --- *** clean-buffer-*-regexps can now specify buffers via predicate functions. @@ -501,24 +501,24 @@ MPD supports the XDG base directory specification since version 0.17.6. ** package.el +++ -*** New "external" package status. -An external package is any installed package that's not built-in and -not from 'package-user-dir', which usually means it's from an entry in -'package-directory-list'. They are treated much like built-in +*** New “external” package status. +An external package is any installed package that’s not built-in and +not from ‘package-user-dir’, which usually means it’s from an entry in +‘package-directory-list’. They are treated much like built-in packages, in that they cannot be deleted through the package menu and are not considered for upgrades. The effect is that a user can manually place a specific version of a -package inside 'package-directory-list' and the package menu will +package inside ‘package-directory-list’ and the package menu will always respect that. +++ *** If a package is available on multiple archives and one has higher -priority (as per 'package-archive-priorities') only that one is -listed. This can be configured with 'package-menu-hide-low-priority'. +priority (as per ‘package-archive-priorities’) only that one is +listed. This can be configured with ‘package-menu-hide-low-priority’. +++ -*** 'package-menu-toggle-hiding' now toggles the hiding of packages. +*** ‘package-menu-toggle-hiding’ now toggles the hiding of packages. This includes the above-mentioned low-priority packages, as well as available packages whose version is lower than the currently installed version (which were previously impossible to display). @@ -526,8 +526,8 @@ This allows users to downgrade a package if a lower version is available. --- -*** When filtering the package menu, keywords starting with "arc:" or -"status:" represent package archive or status, respectively, instead +*** When filtering the package menu, keywords starting with ‘arc:’ or +‘status:’ represent package archive or status, respectively, instead of actual keywords. --- @@ -536,52 +536,52 @@ ASYNC argument. If it is non-nil, package.el performs the download(s) asynchronously. --- -*** New variable 'package-menu-async' controls whether the +*** New variable ‘package-menu-async’ controls whether the package-menu uses asynchronous downloads. --- -*** 'package-install-from-buffer' and 'package-install-file' work on directories. +*** ‘package-install-from-buffer’ and ‘package-install-file’ work on directories. This follows the same rules as installing from a .tar file, except the -pkg file is optional. --- *** Packages which are dependencies of other packages cannot be deleted. -The FORCE argument to 'package-delete' overrides this. +The FORCE argument to ‘package-delete’ overrides this. --- -*** New custom variable 'package-selected-packages' tracks packages +*** New custom variable ‘package-selected-packages’ tracks packages which were installed by the user (as opposed to installed as dependencies). This variable can also be manually customized. --- -*** New command 'package-install-selected-packages' installs all -packages from 'package-selected-packages' which are currently missing. +*** New command ‘package-install-selected-packages’ installs all +packages from ‘package-selected-packages’ which are currently missing. --- -*** 'package-install' function now takes a DONT-SELECT argument. If +*** ‘package-install’ function now takes a DONT-SELECT argument. If this function is called interactively or if DONT-SELECT is nil, add the -package being installed to 'package-selected-packages'. +package being installed to ‘package-selected-packages’. --- -*** New command 'package-autoremove' removes all packages which were +*** New command ‘package-autoremove’ removes all packages which were installed strictly as dependencies but are no longer needed. +++ ** Shell -When you invoke 'shell' interactively, the *shell* buffer will now +When you invoke ‘shell’ interactively, the *shell* buffer will now display in a new window. However, you can customize this behavior via -the 'display-buffer-alist' variable. For example, to get +the ‘display-buffer-alist’ variable. For example, to get the old behavior -- *shell* buffer displays in current window -- use (add-to-list 'display-buffer-alist '("^\\*shell\\*$" . (display-buffer-same-window))). ** EIEIO +++ -*** The ':protection' slot option is not obeyed any more. +*** The ‘:protection’ slot option is not obeyed any more. +++ -*** The 'newname' argument to constructors is optional&deprecated. -If you need your objects to be named, do it by inheriting from 'eieio-named'. +*** The ‘newname’ argument to constructors is optional&deprecated. +If you need your objects to be named, do it by inheriting from ‘eieio-named’. +++ *** The -list-p and -child-p functions are declared obsolete. +++ @@ -592,18 +592,18 @@ If you need your objects to be named, do it by inheriting from 'eieio-named'. *** defgeneric and defmethod are declared obsolete. Use the equivalent facilities from cl-generic.el instead. +++ -*** 'constructor' is now an obsolete alias for 'make-instance'. ---- 'pcase' accepts a new UPattern 'eieio'. +*** ‘constructor’ is now an obsolete alias for ‘make-instance’. +--- ‘pcase’ accepts a new UPattern ‘eieio’. ** ido +++ -*** New command 'ido-bury-buffer-at-head' bound to C-S-b -Bury the buffer at the head of 'ido-matches', analogous to how C-k +*** New command ‘ido-bury-buffer-at-head’ bound to C-S-b +Bury the buffer at the head of ‘ido-matches’, analogous to how C-k kills the buffer at head. --- -*** A prefix argument to 'ido-restrict-to-matches' will reverse its +*** A prefix argument to ‘ido-restrict-to-matches’ will reverse its meaning, and the list is restricted to those elements that do not match the current input. @@ -611,18 +611,18 @@ match the current input. +++ *** You can use and arrow keys to move through history by lines. -The new commands 'next-line-or-history-element' and -'previous-line-or-history-element', bound to and in the +The new commands ‘next-line-or-history-element’ and +‘previous-line-or-history-element’, bound to and in the minibuffer, allow by-line movement through minibuffer history, similarly to an ordinary buffer. Only when point moves over the bottom/top of the minibuffer it goes to the next/previous history -element. 'M-p' and 'M-n' still move directly to previous/next history +element. ‘M-p’ and ‘M-n’ still move directly to previous/next history item as before. ** Search and Replace +++ -*** 'isearch' and 'query-replace' can now perform character folding in matches. +*** ‘isearch’ and ‘query-replace’ can now perform character folding in matches. This is analogous to case folding, but instead of disregarding case variants, it disregards wider classes of distinctions between similar characters. (Case folding is a special case of character folding.) @@ -634,43 +634,43 @@ variants of double quotes (like “ and ”), and the letter a will match all of its accented cousins, even those composed of multiple characters, as well as many other symbols like ℀, ℁, ⒜, and ⓐ. -Character folding is enabled by customizing 'search-default-mode' to -the value 'character-fold-to-regexp'. You can also toggle character -folding in the middle of a search by typing 'M-s ''. +Character folding is enabled by customizing ‘search-default-mode’ to +the value ‘character-fold-to-regexp’. You can also toggle character +folding in the middle of a search by typing ‘M-s '’. -'query-replace' honors character folding if the new variable -'replace-character-fold' is customized to a non-nil value. +‘query-replace’ honors character folding if the new variable +‘replace-character-fold’ is customized to a non-nil value. +++ -*** New user option 'search-default-mode'. +*** New user option ‘search-default-mode’. This option specifies the default mode for Isearch. The default value, nil specifies that Isearch does literal searches (however, -'case-fold-search' and 'isearch-lax-whitespace' may still be applied, +‘case-fold-search’ and ‘isearch-lax-whitespace’ may still be applied, as in previous Emacs versions). +++ -*** New function 'character-fold-to-regexp' can be used +*** New function ‘character-fold-to-regexp’ can be used by searching commands to produce a regexp matching anything that character-folds into STRING. +++ *** The new M-s M-w key binding uses eww to search the web for the text in the region. The search engine to use for this is specified by -the customizable variable 'eww-search-prefix'. +the customizable variable ‘eww-search-prefix’. +++ *** Query-replace history is enhanced. When query-replace reads the FROM string from the minibuffer, typing -'M-p' will now show previous replacements as "FROM SEP TO", where FROM +‘M-p’ will now show previous replacements as ‘FROM SEP TO’, where FROM and TO are the original text and its replacement, and SEP is an arrow -string defined by the new variable 'query-replace-from-to-separator'. -To select a prior replacement, type 'M-p' until the desired +string defined by the new variable ‘query-replace-from-to-separator’. +To select a prior replacement, type ‘M-p’ until the desired replacement appears in the minibuffer, and then exit the minibuffer by typing RET. ** Calc +++ -*** If 'quick-calc' is called with a prefix argument, insert the +*** If ‘quick-calc’ is called with a prefix argument, insert the result of the calculation into the current buffer. +++ @@ -681,16 +681,16 @@ instrumented function. ** ElDoc +++ -*** New minor mode 'global-eldoc-mode' -It is turned on by default, and affects '*scratch*' and other buffers +*** New minor mode ‘global-eldoc-mode’ +It is turned on by default, and affects ‘*scratch*’ and other buffers whose major mode supports Emacs Lisp. --- -*** 'eldoc-documentation-function' now defaults to 'ignore' +*** ‘eldoc-documentation-function’ now defaults to ‘ignore’ --- -*** 'describe-char-eldoc' displays information about character at point, -and can be used as a default value of 'eldoc-documentation-function'. It is +*** ‘describe-char-eldoc’ displays information about character at point, +and can be used as a default value of ‘eldoc-documentation-function’. It is useful when, for example, one needs to distinguish various spaces (e.g. ] [, ] [, ] [, etc.) while using mono-spaced font. @@ -700,17 +700,17 @@ useful when, for example, one needs to distinguish various spaces (e.g. ] [, *** HTML can now be rendered using variable-width fonts. +++ -*** A new command 'F' ('eww-toggle-fonts') can be used to toggle +*** A new command ‘F’ (‘eww-toggle-fonts’) can be used to toggle whether to use variable-pitch fonts or not. The user can also -customize the 'shr-use-fonts' variable. +customize the ‘shr-use-fonts’ variable. +++ -*** A new command 'R' ('eww-readable') will try do identify the main +*** A new command ‘R’ (‘eww-readable’) will try do identify the main textual parts of a web page and display only that, leaving menus and the like off the page. +++ -*** A new command 'D' ('eww-toggle-paragraph-direction') allows you to +*** A new command ‘D’ (‘eww-toggle-paragraph-direction’) allows you to toggle the paragraph direction between left-to-right and right-to-left. --- @@ -722,11 +722,11 @@ buffers you want to keep separate. pages visited) is now preserved in the desktop file. +++ -*** 'eww-after-render-hook' is now called after eww has rendered +*** ‘eww-after-render-hook’ is now called after eww has rendered the data in the buffer. --- -*** The 'eww-reload' command now takes a prefix to not reload via +*** The ‘eww-reload’ command now takes a prefix to not reload via the net, but just use the local copy of the HTML. +++ @@ -736,10 +736,10 @@ interact with this DOM. See the Emacs Lisp manual for interface details. +++ -*** 'mailcap-mime-data' is now consulted when displaying PDF files. +*** ‘mailcap-mime-data’ is now consulted when displaying PDF files. +++ -*** The new 'S' command will list all eww buffers, and allow managing +*** The new ‘S’ command will list all eww buffers, and allow managing them. --- @@ -756,19 +756,19 @@ transformed into multipart/related messages before sending. ** In Show Paren Mode, a parenthesis can be highlighted when point stands inside it, and certain parens can be highlighted when point is at BOL or EOL, or in whitespace there. To enable these, customize, -respectively, 'show-paren-when-point-inside-paren' or -'show-paren-when-point-in-periphery'. +respectively, ‘show-paren-when-point-inside-paren’ or +‘show-paren-when-point-in-periphery’. --- ** If gpg2 exists on the system, it is now used as the default value -of 'epg-gpg-program' (instead of gpg). +of ‘epg-gpg-program’ (instead of gpg). ** Lisp mode --- -*** Strings after ':documentation' are highlighted as docstrings. +*** Strings after ‘:documentation’ are highlighted as docstrings. This enhances Lisp mode fontification to handle documentation of the -form '(:documentation "the doc string")' used in Common Lisp code for +form ‘(:documentation "the doc string")’ used in Common Lisp code for CLOS class and slot documentation. ** Rectangle editing @@ -778,91 +778,91 @@ CLOS class and slot documentation. +++ *** C-x C-x in rectangle-mark-mode now cycles through the four corners. -*** 'string-rectangle' provides on-the-fly preview of the result. +*** ‘string-rectangle’ provides on-the-fly preview of the result. +++ -** New font-lock functions 'font-lock-ensure' and 'font-lock-flush'. -These should be used in preference to 'font-lock-fontify-buffer' when +** New font-lock functions ‘font-lock-ensure’ and ‘font-lock-flush’. +These should be used in preference to ‘font-lock-fontify-buffer’ when called from Lisp. --- -** Macro 'minibuffer-with-setup-hook' can optionally append a function -to 'minibuffer-setup-hook'. +** Macro ‘minibuffer-with-setup-hook’ can optionally append a function +to ‘minibuffer-setup-hook’. -If the first argument of the macro is of the form '(:append FUN)', -then FUN will be appended to 'minibuffer-setup-hook', instead of +If the first argument of the macro is of the form ‘(:append FUN)’, +then FUN will be appended to ‘minibuffer-setup-hook’, instead of prepending it. ** cl-lib +++ -*** New functions 'cl-fresh-line', 'cl-digit-char-p', and 'cl-parse-integer'. +*** New functions ‘cl-fresh-line’, ‘cl-digit-char-p’, and ‘cl-parse-integer’. --- -*** 'pcase' accepts the new UPattern 'cl-struct'. +*** ‘pcase’ accepts the new UPattern ‘cl-struct’. ** Calendar and diary +++ -*** The default 'diary-file' is now located in .emacs.d. +*** The default ‘diary-file’ is now located in .emacs.d. +++ *** New commands to insert diary entries with Chinese dates: -'diary-chinese-insert-anniversary-entry' 'diary-chinese-insert-entry' -'diary-chinese-insert-monthly-entry', 'diary-chinese-insert-yearly-entry'. +‘diary-chinese-insert-anniversary-entry’ ‘diary-chinese-insert-entry’ +‘diary-chinese-insert-monthly-entry’, ‘diary-chinese-insert-yearly-entry’. +++ *** The calendar can now list and mark diary entries with Chinese dates. -See 'diary-chinese-list-entries' and 'diary-chinese-mark-entries'. +See ‘diary-chinese-list-entries’ and ‘diary-chinese-mark-entries’. --- -*** The option 'calendar-mode-line-format' can now be nil, +*** The option ‘calendar-mode-line-format’ can now be nil, which means to do nothing special with the mode line in calendars. +++ -*** New option 'calendar-weekend-days'. +*** New option ‘calendar-weekend-days’. The option customizes which day headers receive the -'calendar-weekend-header' face. +‘calendar-weekend-header’ face. --- -*** New optional args N and STRING for 'holiday-greek-orthodox-easter'. +*** New optional args N and STRING for ‘holiday-greek-orthodox-easter’. --- *** Many items obsolete since at least version 23.1 have been removed. The majority were function/variable/face aliases, too numerous to list here. The remainder were: -**** Functions 'calendar-one-frame-setup', 'calendar-only-one-frame-setup', -'calendar-two-frame-setup', 'european-calendar', 'american-calendar'. +**** Functions ‘calendar-one-frame-setup’, ‘calendar-only-one-frame-setup’, +‘calendar-two-frame-setup’, ‘european-calendar’, ‘american-calendar’. -**** Hooks 'cal-menu-load-hook', 'cal-x-load-hook'. +**** Hooks ‘cal-menu-load-hook’, ‘cal-x-load-hook’. -**** Macro 'calendar-for-loop'. +**** Macro ‘calendar-for-loop’. -**** Variables 'european-calendar-style', 'diary-face', 'hebrew-holidays-{1,4}'. +**** Variables ‘european-calendar-style’, ‘diary-face’, ‘hebrew-holidays-{1,4}’. -**** The nil and list forms of 'diary-display-function'. +**** The nil and list forms of ‘diary-display-function’. +++ -** New ERT function 'ert-summarize-tests-batch-and-exit'. +** New ERT function ‘ert-summarize-tests-batch-and-exit’. If the output of ERT tests in batch mode execution can be saved to a log file, then it can be passed as an argument to the above function to produce a neat summary. --- -** New js.el option 'js-indent-first-init'. +** New js.el option ‘js-indent-first-init’. ** Info --- ** Info mode now displays symbol names in fixed-pitch font. -If you want to get the old behavior back, customize the 'Info-quoted' +If you want to get the old behavior back, customize the ‘Info-quoted’ face to use the same definitions as the default face. --- -*** 'Info-fontify-maximum-menu-size' can be t for no limit. +*** ‘Info-fontify-maximum-menu-size’ can be t for no limit. +++ -*** 'info-display-manual' can now be given a prefix argument which (any +*** ‘info-display-manual’ can now be given a prefix argument which (any non-nil value) directs the command to limit the completion alternatives to currently visited manuals. @@ -872,7 +872,7 @@ alternatives to currently visited manuals. ** Rmail +++ -*** The Rmail commands 'd', 'C-d' and 'u' take optional repeat counts +*** The Rmail commands ‘d’, ‘C-d’ and ‘u’ take optional repeat counts to delete or undelete multiple messages. +++ @@ -880,61 +880,61 @@ to delete or undelete multiple messages. libxml2 or if you have the Lynx browser installed. By default, Rmail will display the HTML version of a mail message that has both HTML and plain text parts, if display of HTML email is possible; customize the -'rmail-mime-prefer-html' option to 'nil' if you don't want that. +‘rmail-mime-prefer-html’ option to ‘nil’ if you don’t want that. +++ *** In the commands that make summaries by subject, recipients, or senders, you can no longer use commas to separate regular expressions. +++ -** SES now supports local printer functions; see 'ses-define-local-printer'. +** SES now supports local printer functions; see ‘ses-define-local-printer’. ** Shell-script Mode --- -*** In sh-mode you can now use 'sh-shell' as a file-local variable to +*** In sh-mode you can now use ‘sh-shell’ as a file-local variable to specify the type of shell in use (bash, csh, etc). --- -*** New value 'always' for 'sh-indent-after-continuation'. -This provides old-style ("dumb") indentation of continued lines. -See the doc string of 'sh-indent-after-continuation' for details. +*** New value ‘always’ for ‘sh-indent-after-continuation’. +This provides old-style (“dumb”) indentation of continued lines. +See the doc string of ‘sh-indent-after-continuation’ for details. ** TLS --- *** Fatal TLS errors are now silent by default. --- -*** If Emacs isn't built with TLS support, an external TLS-capable +*** If Emacs isn’t built with TLS support, an external TLS-capable program is used instead. This program used to be run in --insecure mode by default, but has now changed to be secure instead, and will fail if you try to connect to non-verifiable hosts. This is -controlled by the 'tls-program' variable. +controlled by the ‘tls-program’ variable. ** URL +++ *** The URL package accepts now the protocols "ssh", "scp" and "rsync". -When 'url-handler-mode' is enabled, file operations for these +When ‘url-handler-mode’ is enabled, file operations for these protocols as well as for "telnet" and "ftp" are passed to Tramp. +++ -*** The URL package allows customizing the 'url-user-agent' string. -The new 'url-user-agent' variable can be customized to be a string or +*** The URL package allows customizing the ‘url-user-agent’ string. +The new ‘url-user-agent’ variable can be customized to be a string or a function. --- -*** The new interface variable 'url-request-noninteractive' can be used -to specify that we're running in a noninteractive context, and that +*** The new interface variable ‘url-request-noninteractive’ can be used +to specify that we’re running in a noninteractive context, and that we should not be queried about things like TLS certificate validity. --- -*** 'url-mime-accept-string' can now be used as in "interface" -variable, meaning you can bind it around an 'url-retrieve' call. +*** ‘url-mime-accept-string’ can now be used as in “interface” +variable, meaning you can bind it around an ‘url-retrieve’ call. --- *** If URL is used with a https connection, the first callback argument plist will contain a :peer element that has the output of -'gnutls-peer-status' (if Emacs is built with GnuTLS support). +‘gnutls-peer-status’ (if Emacs is built with GnuTLS support). ** Tramp @@ -948,21 +948,21 @@ busyboxes. +++ *** Method-specific parameters can be overwritten now with variable -'tramp-connection-properties'. +‘tramp-connection-properties’. --- -*** Handler for 'file-notify-valid-p' for remote machines that support +*** Handler for ‘file-notify-valid-p’ for remote machines that support filesystem notifications. ** SQL mode --- -*** New user variable 'sql-default-directory' enables remote +*** New user variable ‘sql-default-directory’ enables remote connections using Tramp. --- -*** New command 'sql-send-line-and-next'. -This command, bound to 'C-c C-n' by default, sends the current line to +*** New command ‘sql-send-line-and-next’. +This command, bound to ‘C-c C-n’ by default, sends the current line to the SQL process and advances to the next line, skipping whitespace and comments. @@ -972,7 +972,7 @@ comments. ** VC and related modes +++ -*** Basic push support, via 'vc-push', bound to 'C-x v P'. +*** Basic push support, via ‘vc-push’, bound to ‘C-x v P’. Implemented for Bzr, Git, Hg. As part of this change, the pre-existing (undocumented) command vc-hg-push now behaves slightly differently. @@ -980,45 +980,45 @@ Implemented for Bzr, Git, Hg. As part of this change, the pre-existing *** The new command vc-region-history shows the log+diff of the active region. +++ -*** You can refresh the VC state of a file buffer with 'M-x vc-refresh-state'. +*** You can refresh the VC state of a file buffer with ‘M-x vc-refresh-state’. This command is useful when you perform version control commands outside Emacs (e.g., from the shell prompt), or if you switch the VC -back-end for the buffer's file, or remove it from version control. +back-end for the buffer’s file, or remove it from version control. +++ -*** New option 'vc-annotate-background-mode' controls whether -the color range from 'vc-annotate-color-map' is applied to the +*** New option ‘vc-annotate-background-mode’ controls whether +the color range from ‘vc-annotate-color-map’ is applied to the background or to the foreground. +++ -*** 'compare-windows' now compares text with the most recently selected window +*** ‘compare-windows’ now compares text with the most recently selected window instead of the next window. If you want the previous behavior of comparing with the next window, customize the new option -'compare-windows-get-window-function' to the value -'compare-windows-get-next-window'. +‘compare-windows-get-window-function’ to the value +‘compare-windows-get-next-window’. --- -*** Two new faces 'compare-windows-removed' and 'compare-windows-added' -replace the face 'compare-windows', which is now an obsolete alias for -'compare-windows-added'. +*** Two new faces ‘compare-windows-removed’ and ‘compare-windows-added’ +replace the face ‘compare-windows’, which is now an obsolete alias for +‘compare-windows-added’. --- *** The VC state indicator in the mode line now has different faces -corresponding to each of the possible states. See the 'vc-faces' +corresponding to each of the possible states. See the ‘vc-faces’ customization group. --- -*** 'log-edit-insert-changelog' converts "(tiny change)" to -"Copyright-paperwork-exempt: yes". Set 'log-edit-rewrite-tiny-change' +*** ‘log-edit-insert-changelog’ converts “(tiny change)” to +“Copyright-paperwork-exempt: yes”. Set ‘log-edit-rewrite-tiny-change’ nil to disable this. --- -** VHDL mode now supports VHDL'08. +** VHDL mode now supports VHDL’08. ** Calculator --- -*** Decimal display mode uses "," groups, so it's more +*** Decimal display mode uses “,” groups, so it’s more fitting for use in money calculations --- @@ -1029,59 +1029,59 @@ fitting for use in money calculations --- *** Hide-IfDef mode now support full C/C++ expressions in macros, macro argument expansion, interactive macro evaluation and automatic -scanning of #define'd symbols. +scanning of #define’d symbols. --- -*** New command 'hif-evaluate-macro', bound to 'C-c @ e', displays the +*** New command ‘hif-evaluate-macro’, bound to ‘C-c @ e’, displays the result of evaluating a macro. --- -*** New command 'hif-clear-all-ifdef-define', bound to 'C-c @ C', clears -all defined symbols in 'hide-ifdef-env'. +*** New command ‘hif-clear-all-ifdef-define’, bound to ‘C-c @ C’, clears +all defined symbols in ‘hide-ifdef-env’. --- -*** New custom variable 'hide-ifdef-header-regexp' to define C/C++ header -file name patterns. Defaults to files whose extension is one of '.h', -'.hh', '.hpp', '.hxx', or '.h++', matched case-insensitively. +*** New custom variable ‘hide-ifdef-header-regexp’ to define C/C++ header +file name patterns. Defaults to files whose extension is one of ‘.h’, +‘.hh’, ‘.hpp’, ‘.hxx’, or ‘.h++’, matched case-insensitively. --- -*** New custom variable 'hide-ifdef-expand-reinclusion-protection' to prevent -reinclusion protected (a.k.a. "idempotent") header files from being hidden. +*** New custom variable ‘hide-ifdef-expand-reinclusion-protection’ to prevent +reinclusion protected (a.k.a. “idempotent”) header files from being hidden. (This could happen when an idempotent header file is visited again, -when its guard symbol is already defined.) Defaults to 't'. +when its guard symbol is already defined.) Defaults to ‘t’. --- -*** New custom variable 'hide-ifdef-exclude-define-regexp' to define symbol -name patterns (e.g. all "FOR_DOXYGEN_ONLY_*") to be ignored when +*** New custom variable ‘hide-ifdef-exclude-define-regexp’ to define symbol +name patterns (e.g. all ‘FOR_DOXYGEN_ONLY_*’) to be ignored when looking for macro definitions. By default, no symbols are ignored. ** TeX mode +++ -*** New custom variable 'tex-print-file-extension' to help users who +*** New custom variable ‘tex-print-file-extension’ to help users who use PDF instead of DVI. +++ *** TeX mode now supports Prettify Symbols mode. When enabling -'prettify-symbols-mode' in a tex-mode buffer, \alpha ... \omega, and +‘prettify-symbols-mode’ in a tex-mode buffer, \alpha ... \omega, and many other math macros are displayed using unicode characters. +++ -** New 'big-indent' style in 'whitespace-mode' highlights deep indentation. +** New ‘big-indent’ style in ‘whitespace-mode’ highlights deep indentation. By default, 32 consecutive spaces or four consecutive TABs are considered to be too deep, but the new variable -'whitespace-big-indent-regexp' can be customized to change that. +‘whitespace-big-indent-regexp’ can be customized to change that. --- -** New options in 'tildify-mode'. -New options 'tildify-space-string', 'tildify-pattern', and -'tildify-foreach-region-function' variables make -'tildify-string-alist', 'tildify-pattern-alist', and -'tildify-ignored-environments-alist' variables (as well as a few +** New options in ‘tildify-mode’. +New options ‘tildify-space-string’, ‘tildify-pattern’, and +‘tildify-foreach-region-function’ variables make +‘tildify-string-alist’, ‘tildify-pattern-alist’, and +‘tildify-ignored-environments-alist’ variables (as well as a few helper functions) obsolete. +++ -** New package Xref replaces Etags's front-end and UI +** New package Xref replaces Etags’s front-end and UI The new package Xref provides a generic framework and new commands to find and move to definitions of functions, macros, data structures @@ -1090,43 +1090,43 @@ to a definition. It supersedes and obsoletes many Etags commands, while still using the etags.el code that reads the TAGS tables as one of its back-ends. -The command 'xref-find-definitions' replaces 'find-tag' and provides +The command ‘xref-find-definitions’ replaces ‘find-tag’ and provides an interface to pick one definition among several. -'tags-loop-continue' is now unbound. 'xref-pop-marker-stack' replaces -'pop-tag-mark', but has a keybinding ('M-,') different from the one -'pop-tag-mark' used. +‘tags-loop-continue’ is now unbound. ‘xref-pop-marker-stack’ replaces +‘pop-tag-mark’, but has a keybinding (‘M-,’) different from the one +‘pop-tag-mark’ used. -'xref-find-definitions-other-window' replaces 'find-tag-other-window'. -'xref-find-definitions-other-frame' replaces 'find-tag-other-frame'. -'xref-find-apropos' replaces 'find-tag-regexp'. +‘xref-find-definitions-other-window’ replaces ‘find-tag-other-window’. +‘xref-find-definitions-other-frame’ replaces ‘find-tag-other-frame’. +‘xref-find-apropos’ replaces ‘find-tag-regexp’. As a result of this, the following commands are now obsolete: -'find-tag-other-window', 'find-tag-other-frame', 'find-tag-regexp', -'tags-apropos'. +‘find-tag-other-window’, ‘find-tag-other-frame’, ‘find-tag-regexp’, +‘tags-apropos’. -'tags-loop-continue' is not obsolete because it's still useful in -'tags-search' and 'tags-query-replace', for which there are no direct +‘tags-loop-continue’ is not obsolete because it’s still useful in +‘tags-search’ and ‘tags-query-replace’, for which there are no direct replacements yet. +++ -*** Variants of 'tags-search' and 'tags-query-replace' in Dired were also -replaced by xref-style commands, see the "Dired" section below. +*** Variants of ‘tags-search’ and ‘tags-query-replace’ in Dired were also +replaced by xref-style commands, see the “Dired” section below. +++ *** New variables -'find-tag-marker-ring-length' is now an obsolete alias for -'xref-marker-ring-length'. 'find-tag-marker-ring' is now an obsolete -alias for a private variable. 'xref-push-marker-stack' and -'xref-pop-marker-stack' should be used instead to manipulate the stack +‘find-tag-marker-ring-length’ is now an obsolete alias for +‘xref-marker-ring-length’. ‘find-tag-marker-ring’ is now an obsolete +alias for a private variable. ‘xref-push-marker-stack’ and +‘xref-pop-marker-stack’ should be used instead to manipulate the stack of searches for definitions. --- -*** 'xref-find-definitions' and 'describe-function' now display +*** ‘xref-find-definitions’ and ‘describe-function’ now display information about mode local overrides (defined by cedet/mode-local.el -'define-overloadable-function' 'define-mode-local-overrides'). +‘define-overloadable-function’ ‘define-mode-local-overrides’). -The framework's Lisp API is still experimental and can change in major, +The framework’s Lisp API is still experimental and can change in major, backward-incompatible ways. --- @@ -1134,12 +1134,12 @@ backward-incompatible ways. The new package Project provides generic infrastructure for dealing with projects. The main commands included in it are -'project-find-file' and 'project-find-regexp'. +‘project-find-file’ and ‘project-find-regexp’. The Lisp API of this package is still experimental. ** EUDC -EUDC's LDAP backend has been improved. +EUDC’s LDAP backend has been improved. +++ *** EUDC supports LDAP-over-SSL URLs (ldaps://). @@ -1149,67 +1149,67 @@ EUDC's LDAP backend has been improved. subprocess instead of on the command line. --- -*** EUDC handles LDAP wildcards automatically so the user shouldn't +*** EUDC handles LDAP wildcards automatically so the user shouldn’t need to configure this manually anymore. +++ -*** The LDAP configuration section of EUDC's manual has been +*** The LDAP configuration section of EUDC’s manual has been rewritten. There have also been customization changes. +++ -*** New custom variable 'eudc-server-hotlist' to allow specifying +*** New custom variable ‘eudc-server-hotlist’ to allow specifying multiple EUDC servers in init file. +++ -*** Custom variable 'eudc-inline-query-format' defaults to completing +*** Custom variable ‘eudc-inline-query-format’ defaults to completing on email and firstname instead of surname. --- -*** Custom variable 'eudc-expansion-overwrites-query' defaults to nil +*** Custom variable ‘eudc-expansion-overwrites-query’ defaults to nil to avoid interfering with the kill ring. +++ -*** Custom variable 'eudc-inline-expansion-format' defaults to +*** Custom variable ‘eudc-inline-expansion-format’ defaults to "Firstname Surname ". +++ -*** Custom variable 'eudc-options-file' defaults to +*** Custom variable ‘eudc-options-file’ defaults to "~/.emacs.d/eudc-options". --- -*** New custom variable 'ldap-ldapsearch-password-prompt-regexp' to +*** New custom variable ‘ldap-ldapsearch-password-prompt-regexp’ to allow overriding the regular expression that recognizes the ldapsearch -command line's password prompt. +command line’s password prompt. --- -EUDC's BBDB backend now supports BBDB 3. +EUDC’s BBDB backend now supports BBDB 3. --- -EUDC's PH backend (eudcb-ph.el) is obsolete. +EUDC’s PH backend (eudcb-ph.el) is obsolete. ** Eshell +++ -*** The new built-in command 'clear' can scroll window contents out of sight. +*** The new built-in command ‘clear’ can scroll window contents out of sight. If provided with an optional non-nil argument, the scrollback contents will be cleared. +++ -*** New buffer syntax '#', which is equivalent to -'#'. This shorthand makes interacting with +*** New buffer syntax ‘#’, which is equivalent to +‘#’. This shorthand makes interacting with buffers from eshell more convenient. Custom variable -'eshell-buffer-shorthand', which has been broken for a while, has been +‘eshell-buffer-shorthand’, which has been broken for a while, has been removed. +++ -*** By default, eshell "visual" program buffers (created by -'eshell-visual-commands' and similar custom vars) are no longer killed +*** By default, eshell “visual” program buffers (created by +‘eshell-visual-commands’ and similar custom vars) are no longer killed when their processes die. This fixes issues with short-lived commands and makes visual programs more useful in general. For example, if -"git log" is a visual command, it will always show the visual command -buffer, even if the "git log" process dies. For the old behavior, -make the new option 'eshell-destroy-buffer-when-process-dies' non-nil. +‘git log’ is a visual command, it will always show the visual command +buffer, even if the ‘git log’ process dies. For the old behavior, +make the new option ‘eshell-destroy-buffer-when-process-dies’ non-nil. ** Browse-url @@ -1223,7 +1223,7 @@ make the new option 'eshell-destroy-buffer-when-process-dies' non-nil. *** Support for several ancient browsers is now officially obsolete. +++ -** tar-mode: new 'tar-new-entry' command, allowing for new members to +** tar-mode: new ‘tar-new-entry’ command, allowing for new members to be added to the archive. ** Autorevert @@ -1233,7 +1233,7 @@ be added to the archive. Emacs is compiled with file notification support. --- -*** 'auto-revert-use-notify' is set to nil in 'global-auto-revert-mode'. +*** ‘auto-revert-use-notify’ is set to nil in ‘global-auto-revert-mode’. See . ** File Notifications @@ -1242,46 +1242,46 @@ See . *** The kqueue library is integrated for *BSD and Mac OS X machines. +++ -*** The new event 'stopped' signals, that a file notification watch is +*** The new event ‘stopped’ signals, that a file notification watch is not active any longer. +++ -*** The new function 'file-notify-valid-p' checks, whether a file +*** The new function ‘file-notify-valid-p’ checks, whether a file notification descriptor still corresponds to an activate watch. ** Dired +++ -*** The command 'dired-do-compress' bound to 'Z' now can compress +*** The command ‘dired-do-compress’ bound to ‘Z’ now can compress directories and decompress zip files. +++ -*** New command 'dired-do-compress-to' bound to 'c' can be used to +*** New command ‘dired-do-compress-to’ bound to ‘c’ can be used to compress many marked files into a single named archive. The compression command is determined from the new -'dired-compress-files-alist' variable. - -+++ -*** New user interface for the 'A' and 'Q' commands. -These keys, now bound to 'dired-do-find-regexp' and -'dired-do-find-regexp-and-replace', work similarly to 'xref-find-apropos' -and 'xref-query-replace-in-results': they present the matches -in the '*xref*' buffer and let you move through the matches. No need -to use 'tags-loop-continue' to resume the search or replace loop. The -previous commands, 'dired-do-search' and -'dired-do-query-replace-regexp', are still available, but not bound to -keys; rebind 'A' and 'Q' to invoke them if you want the old behavior +‘dired-compress-files-alist’ variable. + ++++ +*** New user interface for the ‘A’ and ‘Q’ commands. +These keys, now bound to ‘dired-do-find-regexp’ and +‘dired-do-find-regexp-and-replace’, work similarly to ‘xref-find-apropos’ +and ‘xref-query-replace-in-results’: they present the matches +in the ‘*xref*’ buffer and let you move through the matches. No need +to use ‘tags-loop-continue’ to resume the search or replace loop. The +previous commands, ‘dired-do-search’ and +‘dired-do-query-replace-regexp’, are still available, but not bound to +keys; rebind ‘A’ and ‘Q’ to invoke them if you want the old behavior back. We intend to obsolete the old commands in a future release. ** Tabulated List Mode +++ -*** It is now safe for a mode that derives 'tabulated-list-mode' to not -call 'tabulated-list-init-header', in which case it will have no +*** It is now safe for a mode that derives ‘tabulated-list-mode’ to not +call ‘tabulated-list-init-header’, in which case it will have no header. +++ -*** 'tabulated-list-print' takes a second optional argument, update, +*** ‘tabulated-list-print’ takes a second optional argument, update, which specifies an alternative printing method which is faster when few or no entries have changed. @@ -1302,13 +1302,13 @@ minibuffer instead of a graphical dialog, depending on whether the gpg command is called from Emacs (i.e., INSIDE_EMACS environment variable is set). This feature requires newer versions of GnuPG (2.1.5 or later) and Pinentry (0.9.5 or later). To use this feature, add -"allow-emacs-pinentry" to "~/.gnupg/gpg-agent.conf" and reload the -configuration with "gpgconf --reload gpg-agent". +‘allow-emacs-pinentry’ to ‘~/.gnupg/gpg-agent.conf’ and reload the +configuration with ‘gpgconf --reload gpg-agent’. +++ ** cl-generic.el provides CLOS-style multiple-dispatch generic functions. -The main entry points are 'cl-defgeneric' and 'cl-defmethod'. See the -node "Generic Functions" in the Emacs Lisp manual for more details. +The main entry points are ‘cl-defgeneric’ and ‘cl-defmethod’. See the +node “Generic Functions” in the Emacs Lisp manual for more details. --- ** scss-mode (a minor variant of css-mode) is a major mode for editing @@ -1319,25 +1319,25 @@ SCSS (Sassy CSS) files. let-bind the values stored in an alist. --- -** 'tildify-mode' allows automatic insertion of hard spaces as one +** ‘tildify-mode’ allows automatic insertion of hard spaces as one types the text. Breaking line after a single-character words is forbidden by Czech and Polish typography (and may be discouraged in -other languages), so 'auto-tildify-mode' makes it easier to create +other languages), so ‘auto-tildify-mode’ makes it easier to create a typographically-correct documents. --- -** The 'seq' library adds sequence manipulation functions and macros +** The ‘seq’ library adds sequence manipulation functions and macros that complement basic functions provided by subr.el. All functions -are prefixed with 'seq-' and work on lists, strings and vectors. -'pcase' accepts a new Upattern 'seq'. +are prefixed with ‘seq-’ and work on lists, strings and vectors. +‘pcase’ accepts a new Upattern ‘seq’. --- -** The 'map' library provides map-manipulation functions that work on +** The ‘map’ library provides map-manipulation functions that work on alists, hash-table and arrays. All functions are prefixed with -'map-'. 'pcase' accepts a new UPattern 'map'. +‘map-’. ‘pcase’ accepts a new UPattern ‘map’. --- -** The 'thunk' library provides functions and macros to control the +** The ‘thunk’ library provides functions and macros to control the evaluation of forms. --- @@ -1348,79 +1348,79 @@ support for JSX, an XML-like syntax extension to ECMAScript. * Incompatible Lisp Changes in Emacs 25.1 --- -** 'setq' and 'setf' must now be called with an even number of +** ‘setq’ and ‘setf’ must now be called with an even number of arguments. The earlier behavior of silently supplying a nil to the last variable when there was an odd number of arguments has been eliminated. +++ -** 'syntax-begin-function' is declared obsolete. +** ‘syntax-begin-function’ is declared obsolete. Removed font-lock-beginning-of-syntax-function and the SYNTAX-BEGIN slot in font-lock-defaults. +++ ** The new implementation of Subword mode affects word movement everywhere. -When Subword mode is turned on, 'forward-word', 'backward-word', and +When Subword mode is turned on, ‘forward-word’, ‘backward-word’, and everything that uses them will move by sub-words, effectively -overriding the buffer's syntax table. Lisp programs that shouldn't be +overriding the buffer’s syntax table. Lisp programs that shouldn’t be affected by Subword mode should call the new functions -'forward-word-strictly' and 'backward-word-strictly' instead. +‘forward-word-strictly’ and ‘backward-word-strictly’ instead. +++ -** 'package-initialize' now sets 'package-enable-at-startup' to nil if +** ‘package-initialize’ now sets ‘package-enable-at-startup’ to nil if called during startup. Users who call this function in their init file and still expect it to be run after startup should set -'package-enable-at-startup' to t after the call to -'package-initialize'. +‘package-enable-at-startup’ to t after the call to +‘package-initialize’. --- -** ':global' minor mode use 'setq-default' rather than 'setq'. -This means that you can't use 'make-local-variable' and expect them to -"magically" become buffer-local. +** ‘:global’ minor mode use ‘setq-default’ rather than ‘setq’. +This means that you can’t use ‘make-local-variable’ and expect them to +“magically” become buffer-local. +++ -** 'track-mouse' no longer freezes the shape of the mouse pointer. -The 'track-mouse' form no longer refrains from changing the shape of +** ‘track-mouse’ no longer freezes the shape of the mouse pointer. +The ‘track-mouse’ form no longer refrains from changing the shape of the mouse pointer for the entire time the body of that form is -executed. Lisp programs that use 'track-mouse' for dragging across +executed. Lisp programs that use ‘track-mouse’ for dragging across large portions of the Emacs display, and want to avoid changes in the -pointer shape during dragging, should bind the variable 'track-mouse' -to the special value 'dragging' in the body of the form. +pointer shape during dragging, should bind the variable ‘track-mouse’ +to the special value ‘dragging’ in the body of the form. --- -** The optional 'predicate' argument of 'lisp-complete-symbol' no longer +** The optional ‘predicate’ argument of ‘lisp-complete-symbol’ no longer has any effect. (This change was made in Emacs 24.4 but was not advertised at the time.) +++ -** 'indirect-function' does not signal 'void-function' any more. +** ‘indirect-function’ does not signal ‘void-function’ any more. This is mostly a bug-fix, since this change was missed back in 24.4 when -symbol-function was changed not to signal 'void-function' any more. +symbol-function was changed not to signal ‘void-function’ any more. +++ -*** As a consequence, the second arg of 'indirect-function' is now obsolete. +*** As a consequence, the second arg of ‘indirect-function’ is now obsolete. +++ ** Comint, term, and compile do not set the EMACS env var any more. Use the INSIDE_EMACS environment variable instead. +++ -** 'save-excursion' does not save&restore the mark any more. -Use 'save-mark-and-excursion' if you want the old behavior. +** ‘save-excursion’ does not save&restore the mark any more. +Use ‘save-mark-and-excursion’ if you want the old behavior. +++ -** 'read-buffer' and 'read-buffer-function' can now be called with a 4th -argument ('predicate'). +** ‘read-buffer’ and ‘read-buffer-function’ can now be called with a 4th +argument (‘predicate’). +++ -** 'completion-table-dynamic' by default stays in the minibuffer. +** ‘completion-table-dynamic’ by default stays in the minibuffer. The minibuffer will be the current buffer when the function is called. If you want the old behavior of calling the function in the buffer from which the minibuffer was entered, use the new argument -'switch-buffer' to 'completion-table-dynamic'. +‘switch-buffer’ to ‘completion-table-dynamic’. --- -** window-configurations no longer record the buffers' marks. +** window-configurations no longer record the buffers’ marks. --- ** inhibit-modification-hooks now also inhibits lock-file checks, as well as @@ -1430,11 +1430,11 @@ active region handling. ** deactivate-mark is now buffer-local. +++ -** 'cl-the' now asserts that its argument is of the given type. +** ‘cl-the’ now asserts that its argument is of the given type. +++ -** 'process-running-child-p' may now return a numeric process -group ID instead of 't'. +** ‘process-running-child-p’ may now return a numeric process +group ID instead of ‘t’. +++ ** Mouse click events on mode line or header line no longer include @@ -1442,35 +1442,35 @@ any reference to a buffer position. The 6th member of the mouse position list returned for such events is now nil. --- -** Menu items in keymaps do not support the "key shortcut cache" any more. +** Menu items in keymaps do not support the “key shortcut cache” any more. These slots used to hold key-shortcut data, but have been obsolete since Emacs-21. --- ** Emacs no longer downcases the first letter of a system diagnostic -when signaling a file error. For example, it now reports "Permission -denied" instead of "permission denied". The old behavior was problematic +when signaling a file error. For example, it now reports “Permission +denied” instead of “permission denied”. The old behavior was problematic in languages like German where downcasing rules depend on grammar. +++ -** New variable 'text-quoting-style' to control how Emacs translates quotes. -Set it to 'curve' for curved single quotes ‘like this’, to 'straight' -for straight apostrophes 'like this', and to 'grave' for grave accent -and apostrophe `like this'. The default value nil acts like 'curve' -if curved single quotes are displayable, and like 'grave' otherwise. +** New variable ‘text-quoting-style’ to control how Emacs translates quotes. +Set it to ‘curve’ for curved single quotes ‘like this’, to ‘straight’ +for straight apostrophes 'like this', and to ‘grave’ for grave accent +and apostrophe `like this'. The default value nil acts like ‘curve’ +if curved single quotes are displayable, and like ‘grave’ otherwise. The new variable affects display of diagnostics and help, but not of info. +++ ** substitute-command-keys now replaces quotes. -That is, it converts documentation strings' quoting style as per the -value of 'text-quoting-style'. Doc strings in source code can use +That is, it converts documentation strings’ quoting style as per the +value of ‘text-quoting-style’. Doc strings in source code can use either curved single quotes or grave accents and apostrophes. As before, characters preceded by \= are output as-is. +++ -** Message-issuing functions 'error', 'message', etc. now convert quotes. -They use the new 'format-message' function instead of plain 'format', -so that they now follow user preference as per 'text-quoting-style' +** Message-issuing functions ‘error’, ‘message’, etc. now convert quotes. +They use the new ‘format-message’ function instead of plain ‘format’, +so that they now follow user preference as per ‘text-quoting-style’ when processing curved single quotes, grave accents, and apostrophes in their format argument. @@ -1478,7 +1478,7 @@ in their format argument. ** The character classes [:alpha:] and [:alnum:] in regular expressions now match multibyte characters using Unicode character properties. If you want the old behavior where they matched any character with -word syntax, use '\sw' instead. +word syntax, use ‘\sw’ instead. +++ ** The character classes [:graph:] and [:print:] in regular expressions @@ -1489,113 +1489,113 @@ unassigned codepoints are now rejected. If you want the old behavior, use [:multibyte:] instead. +++ -** The 'diff' command uses the unified format now. To restore the old -behavior, set 'diff-switches' to '-c'. +** The ‘diff’ command uses the unified format now. To restore the old +behavior, set ‘diff-switches’ to ‘-c’. --- -** 'grep-template' and 'grep-find-template' values don't include the ---color argument anymore. It's added at the place holder position +** ‘grep-template’ and ‘grep-find-template’ values don’t include the +--color argument anymore. It’s added at the place holder position dynamically. Any third-party code that changes these templates should be updated accordingly. +++ -** '(/ N)' is now equivalent to '(/ 1 N)' rather than to '(/ N 1)'. +** ‘(/ N)’ is now equivalent to ‘(/ 1 N)’ rather than to ‘(/ N 1)’. The new behavior is compatible with Common Lisp and with XEmacs. This change does not affect Lisp code intended to be portable to -Emacs 24.2 and earlier, which did not support unary '/'. +Emacs 24.2 and earlier, which did not support unary ‘/’. +++ -** The 'default-directory' value doesn't have to end slash. To make -that happen, 'unhandled-file-name-directory' now defaults to calling -'file-name-as-directory'. +** The ‘default-directory’ value doesn’t have to end slash. To make +that happen, ‘unhandled-file-name-directory’ now defaults to calling +‘file-name-as-directory’. * Lisp Changes in Emacs 25.1 ** pcase +++ -*** New UPatterns 'quote', 'app'. +*** New UPatterns ‘quote’, ‘app’. +++ -*** New UPatterns can be defined with 'pcase-defmacro'. +*** New UPatterns can be defined with ‘pcase-defmacro’. +++ *** New vector QPattern. --- ** syntax-propertize is now automatically called on-demand during forward -parsing functions like 'forward-sexp'. +parsing functions like ‘forward-sexp’. +++ -** New hooks 'prefix-command-echo-keystrokes-functions' and -'prefix-command-preserve-state-hook' allow the definition of prefix -commands other than the predefined 'C-u'. +** New hooks ‘prefix-command-echo-keystrokes-functions’ and +‘prefix-command-preserve-state-hook’ allow the definition of prefix +commands other than the predefined ‘C-u’. +++ -** New functions 'filepos-to-bufferpos' and 'bufferpos-to-filepos'. +** New functions ‘filepos-to-bufferpos’ and ‘bufferpos-to-filepos’. These allow conversion between buffer positions and the corresponding -file byte offsets, given the file's encoding. +file byte offsets, given the file’s encoding. +++ -** The default value of 'load-read-function' is now 'read'. -Previously, the default value of 'nil' implied using 'read'. +** The default value of ‘load-read-function’ is now ‘read’. +Previously, the default value of ‘nil’ implied using ‘read’. +++ -** New hook 'pre-redisplay-functions'. -It is a bit easier to use than 'pre-redisplay-function'. +** New hook ‘pre-redisplay-functions’. +It is a bit easier to use than ‘pre-redisplay-function’. +++ -** The second arg of 'looking-back' should always be provided explicitly. -Previously, it was an optional argument, now it's mandatory. +** The second arg of ‘looking-back’ should always be provided explicitly. +Previously, it was an optional argument, now it’s mandatory. +++ -** Text properties 'intangible', 'point-entered', and 'point-left' are obsolete. -Replaced by properties 'cursor-intangible' and 'cursor-sensor-functions', -implemented by the new 'cursor-intangible-mode' and -'cursor-sensor-mode' minor modes. +** Text properties ‘intangible’, ‘point-entered’, and ‘point-left’ are obsolete. +Replaced by properties ‘cursor-intangible’ and ‘cursor-sensor-functions’, +implemented by the new ‘cursor-intangible-mode’ and +‘cursor-sensor-mode’ minor modes. +++ -** 'inhibit-point-motion-hooks' now defaults to 't' and is obsolete. -Use the new minor modes 'cursor-intangible-mode' and -'cursor-sensor-mode' instead. +** ‘inhibit-point-motion-hooks’ now defaults to ‘t’ and is obsolete. +Use the new minor modes ‘cursor-intangible-mode’ and +‘cursor-sensor-mode’ instead. +++ -** New process type 'pipe', which can be used in combination with the -':stderr' keyword of make-process to handle standard error output +** New process type ‘pipe’, which can be used in combination with the +‘:stderr’ keyword of make-process to handle standard error output of subprocess. +++ -** New function 'make-process' provides an alternative interface to -'start-process'. It allows programs to set process parameters such as +** New function ‘make-process’ provides an alternative interface to +‘start-process’. It allows programs to set process parameters such as process filter, sentinel, etc., through keyword arguments (similar to -'make-network-process'). +‘make-network-process’). +++ -** A new function 'directory-files-recursively' returns all matching +** A new function ‘directory-files-recursively’ returns all matching files (recursively) under a directory. +++ -** New variable 'inhibit-message', when bound to non-nil, inhibits -'message' and related functions from displaying messages in the echo +** New variable ‘inhibit-message’, when bound to non-nil, inhibits +‘message’ and related functions from displaying messages in the echo area. The output is still logged to the *Messages* buffer. +++ -** A new text property 'inhibit-read-only' can be used in read-only +** A new text property ‘inhibit-read-only’ can be used in read-only buffers to allow certain parts of the text to be writable. +++ -** A new variable 'comment-end-can-be-escaped' is useful in languages +** A new variable ‘comment-end-can-be-escaped’ is useful in languages such as C and C++ where line comments with escaped newlines are continued to the next line. +++ -** New macro 'define-advice'. +** New macro ‘define-advice’. +++ ** Emacs Lisp now supports generators. -See the "Generators" section of the ELisp manual for the details. +See the ‘Generators’ section of the ELisp manual for the details. +++ ** New finalizer facility for running code when objects become unreachable. -See the "Finalizer Type" subsection in the ELisp manual for the +See the ‘Finalizer Type’ subsection in the ELisp manual for the details. --- @@ -1607,10 +1607,10 @@ evaluated (and should return a string) when the closure is built. ** define-inline provides a new way to define inlinable functions. +++ -** New function 'macroexpand-1' to perform a single step of macro expansion. +** New function ‘macroexpand-1’ to perform a single step of macro expansion. +++ -** Some "x-*" functions were obsoleted and/or renamed: +** Some ‘x-*’ functions were obsoleted and/or renamed: *** x-select-text is renamed gui-select-text. *** x-selection-value is renamed gui-selection-value. *** x-get-selection is renamed gui-get-selection. @@ -1619,18 +1619,18 @@ evaluated (and should return a string) when the closure is built. *** x-set-selection is renamed to gui-set-selection +++ -** New function 'string-greaterp', which return the opposite result of -'string-lessp'. +** New function ‘string-greaterp’, which return the opposite result of +‘string-lessp’. +++ -** The new functions 'string-collate-lessp' and 'string-collate-equalp' -preserve the collation order as defined by the system's locale(1) +** The new functions ‘string-collate-lessp’ and ‘string-collate-equalp’ +preserve the collation order as defined by the system’s locale(1) environment. For the time being this is implemented for modern POSIX systems and for MS-Windows, for other systems they fall back to their -counterparts 'string-lessp' and 'string-equal'. +counterparts ‘string-lessp’ and ‘string-equal’. --- -*** The ls-lisp package uses 'string-collate-lessp' to sort file names. +*** The ls-lisp package uses ‘string-collate-lessp’ to sort file names. The effect is that, on systems that use ls-lisp for Dired, the default sort order of the files in Dired is now different from what it was in previous versions of Emacs. In particular, the file names are sorted @@ -1638,124 +1638,125 @@ disregarding punctuation, accents, and diacritics, and letter case is ignored. For example, files whose name begin with a period will no longer appear near the beginning of the directory listing. If you want the old, locale-independent sorting, customize the new option -'ls-lisp-use-string-collate' to the nil value. +‘ls-lisp-use-string-collate’ to the nil value. +++ -*** The MS-Windows specific variable 'w32-collate-ignore-punctuation', +*** The MS-Windows specific variable ‘w32-collate-ignore-punctuation’, if set to a non-nil value, causes the above 2 functions to ignore symbol and punctuation characters when collating strings. This -emulates the behavior of modern Posix platforms when the locale's -codeset is "UTF-8" (as in "en_US.UTF-8"). This is needed because -MS-Windows doesn't support UTF-8 as codeset in its locales. +emulates the behavior of modern Posix platforms when the locale’s +codeset is UTF-8 (as in ‘en_US.UTF-8’). This is needed because +MS-Windows doesn’t support UTF-8 as codeset in its locales. +++ -** New function 'alist-get', which is also a valid place (aka lvalue). +** New function ‘alist-get’, which is also a valid place (aka lvalue). +++ -** New function 'funcall-interactively', which works like 'funcall' -but makes 'called-interactively-p' treat the function as (you guessed it) +** New function ‘funcall-interactively’, which works like ‘funcall’ +but makes ‘called-interactively-p’ treat the function as (you guessed it) called interactively. +++ -** New function 'function-put' to use instead of 'put' for function properties. +** New function ‘function-put’ to use instead of ‘put’ for function properties. +++ -** The new function 'bidi-find-overridden-directionality' allows you to +** The new function ‘bidi-find-overridden-directionality’ allows you to find characters whose directionality was, perhaps maliciously, overridden by directional override control characters. Lisp programs can use this to detect potential phishing of URLs and other links that exploits bidirectional display reordering. +++ -** The new function 'buffer-substring-with-bidi-context' allows you to +** The new function ‘buffer-substring-with-bidi-context’ allows you to copy a portion of a buffer into a different location while preserving the visual appearance both of the copied text and the text at destination, even when the copied text includes mixed bidirectional text and directional control characters. +++ -** New properties that can be specified with 'declare': +** New properties that can be specified with ‘declare’: *** (interactive-only INSTEAD), says to use INSTEAD for non-interactive use. *** (pure VAL), if VAL is non-nil, indicates the function is pure. *** (side-effect-free VAL), if VAL is non-nil, indicates the function does not have side effects. +++ -** New macro 'with-file-modes', for evaluating expressions with default file +** New macro ‘with-file-modes’, for evaluating expressions with default file permissions set to temporary values (e.g., for creating private files). +++ -** You can access the slots of structures using 'cl-struct-slot-value'. +** You can access the slots of structures using ‘cl-struct-slot-value’. +++ -** Function 'sort' can deal with vectors. +** Function ‘sort’ can deal with vectors. --- -** Function 'system-name' now returns an updated value if the current -system's name has changed or if the Emacs process has changed systems, +** Function ‘system-name’ now returns an updated value if the current +system’s name has changed or if the Emacs process has changed systems, and to avoid long waits it no longer consults DNS to canonicalize the -name. The variable 'system-name' is now obsolete. +name. The variable ‘system-name’ is now obsolete. +++ -** Function 'write-region' no longer outputs "Wrote FILE" in batch mode. +** Function ‘write-region’ no longer outputs “Wrote FILE” in batch mode. --- -** If 'pwd' is called with a prefix argument, insert the current default +** If ‘pwd’ is called with a prefix argument, insert the current default directory at point. +++ ** New functions return extended information about fonts and faces. +++ -*** The function 'font-info' now returns more details about a font. -In particular, it now returns the average width of the font's +*** The function ‘font-info’ now returns more details about a font. +In particular, it now returns the average width of the font’s characters, which can be used for geometry-related calculations. +++ -*** A new function 'default-font-width' returns the average width of a -character in the current buffer's default font. If the default face -is remapped (see 'face-remapping-alist'), the value for the remapped +*** A new function ‘default-font-width’ returns the average width of a +character in the current buffer’s default font. If the default face +is remapped (see ‘face-remapping-alist’), the value for the remapped face is returned. This function complements the existing function -'default-font-height'. +‘default-font-height’. +++ -*** New functions 'window-font-height' and 'window-font-width' return +*** New functions ‘window-font-height’ and ‘window-font-width’ return the height and average width of characters in a specified face and -window. If FACE is remapped (see 'face-remapping-alist'), the +window. If FACE is remapped (see ‘face-remapping-alist’), the function returns the information for the remapped face. +++ -*** A new function 'window-max-chars-per-line' returns the maximal +*** A new function ‘window-max-chars-per-line’ returns the maximal number of characters that can be displayed on one line. If a face and/or window are provided, these values are used for the -calculation. This function is different from 'window-body-width' in +calculation. This function is different from ‘window-body-width’ in that it accounts for (i) continuation glyphs, (ii) the size of the font, and (iii) the specified window. --- ** New utilities in subr-x.el: -*** New macros 'if-let' and 'when-let' allow defining bindings and to +*** New macros ‘if-let’ and ‘when-let’ allow defining bindings and to execute code depending whether all values are true. -*** New macros 'thread-first' and 'thread-last' allow threading a form +*** New macros ‘thread-first’ and ‘thread-last’ allow threading a form as the first or last argument of subsequent forms. +++ ** Documentation strings now support quoting with curved single quotes ‘like-this’ in addition to the old style with grave accent and -apostrophe `like-this'. The new style looks better on today's displays. +apostrophe `like-this'. The new style looks better on today’s displays. In the new Electric Quote mode, you can enter curved single quotes into documentation by typing ` and '. Outside Electric Quote mode, -you can enter them by typing 'C-x 8 [' and 'C-x 8 ]', or (if your Alt -key works) by typing 'A-[' and 'A-]'. As described above under -'text-quoting-style', the user can specify how to display doc string +you can enter them by typing ‘C-x 8 [’ and ‘C-x 8 ]’, or (if your Alt +key works) by typing ‘A-[’ and ‘A-]’. As described above under +‘text-quoting-style’, the user can specify how to display doc string +quotes. +++ -** New function 'format-message' is like 'format' and also converts +** New function ‘format-message’ is like ‘format’ and also converts curved single quotes, grave accents and apostrophes as per -'text-quoting-style'. +‘text-quoting-style’. +++ -** show-help-function's arg is converted via substitute-command-keys +** show-help-function’s arg is converted via substitute-command-keys before being passed to the function. Help strings, help-echo properties, etc. can therefore contain command key escapes and quotation marks. @@ -1765,36 +1766,36 @@ quotation marks. *** Time conversion functions now accept an optional ZONE argument that specifies the time zone rules for conversion. ZONE is omitted or -nil for Emacs local time, t for Universal Time, 'wall' for system wall -clock time, or a string as in 'set-time-zone-rule' for a time zone -rule. The affected functions are 'current-time-string', -'current-time-zone', 'decode-time', and 'format-time-string'. The -function 'encode-time', which already accepted a simple time zone rule +nil for Emacs local time, t for Universal Time, ‘wall’ for system wall +clock time, or a string as in ‘set-time-zone-rule’ for a time zone +rule. The affected functions are ‘current-time-string’, +‘current-time-zone’, ‘decode-time’, and ‘format-time-string’. The +function ‘encode-time’, which already accepted a simple time zone rule argument, has been extended to accept all the new forms. *** Time-related functions now consistently accept numbers (representing seconds since the epoch) and nil (representing the current time) as well as the usual list-of-integer representation. -Affected functions include 'current-time-string', 'current-time-zone', -'decode-time', 'float-time', 'format-time-string', 'seconds-to-time', -'time-add', 'time-less-p', 'time-subtract', 'time-to-day-in-year', -'time-to-days', and 'time-to-seconds'. +Affected functions include ‘current-time-string’, ‘current-time-zone’, +‘decode-time’, ‘float-time’, ‘format-time-string’, ‘seconds-to-time’, +‘time-add’, ‘time-less-p’, ‘time-subtract’, ‘time-to-day-in-year’, +‘time-to-days’, and ‘time-to-seconds’. -*** The 'encode-time-value' and 'with-decoded-time-value' macros have +*** The ‘encode-time-value’ and ‘with-decoded-time-value’ macros have been obsoleted. -*** 'calendar-next-time-zone-transition', 'time-add', and -'time-subtract' no longer return time values in the obsolete and +*** ‘calendar-next-time-zone-transition’, ‘time-add’, and +‘time-subtract’ no longer return time values in the obsolete and undocumented integer-pair format. Instead, they return a list of two integers. +++ -** New function 'set-binary-mode' allows switching a standard stream +** New function ‘set-binary-mode’ allows switching a standard stream of the Emacs process to binary I/O mode. +++ -** The new function 'directory-name-p' can be used to check whether a file -name (as returned from, for instance, 'file-name-all-completions') is +** The new function ‘directory-name-p’ can be used to check whether a file +name (as returned from, for instance, ‘file-name-all-completions’) is a directory file name. It returns non-nil if the last character in the name is a directory separator character (forward slash on GNU and Unix systems, forward- or backslash on MS-Windows and MS-DOS). @@ -1806,22 +1807,22 @@ if the terminal cannot display curved quotes. +++ ** Standard output and error streams now transliterate characters via standard-display-table, and encode output using locale-coding-system. -To force a specific encoding, bind 'coding-system-for-write' to the -coding-system of your choice when invoking functions like 'prin1' and -'message'. +To force a specific encoding, bind ‘coding-system-for-write’ to the +coding-system of your choice when invoking functions like ‘prin1’ and +‘message’. +++ -** New var 'truncate-string-ellipsis' to choose how to indicate truncation. +** New var ‘truncate-string-ellipsis’ to choose how to indicate truncation. +++ -** New possible value for 'system-type': 'nacl'. -This is used by Google's Native Client (NaCl). +** New possible value for ‘system-type’: ‘nacl’. +This is used by Google’s Native Client (NaCl). ** Miscellaneous name change --- For consistency with the usual Emacs spelling, the Lisp variable -'hfy-optimisations' has been renamed to 'hfy-optimizations'. +‘hfy-optimisations’ has been renamed to ‘hfy-optimizations’. The old name should still work, as an obsolescent alias. ** Changes in Frame- and Window- Handling @@ -1831,59 +1832,59 @@ The old name should still work, as an obsolescent alias. provide toolkit scroll bars, namely Gtk+, Lucid, Motif and Windows. Horizontal scroll bars are turned off by default. -**** New function 'horizontal-scroll-bars-available-p' telling whether +**** New function ‘horizontal-scroll-bars-available-p’ telling whether horizontal scroll bars are available on the underlying system. -**** New mode 'horizontal-scroll-bar-mode' to toggle horizontal scroll +**** New mode ‘horizontal-scroll-bar-mode’ to toggle horizontal scroll bars on all existing and future frames. -**** New function 'toggle-horizontal-scroll-bar' to toggle horizontal +**** New function ‘toggle-horizontal-scroll-bar’ to toggle horizontal scroll bars on the selected frame. -**** New frame parameters 'horizontal-scroll-bars' and - 'scroll-bar-height' to set horizontal scroll bars and their height - for individual frames and in 'default-frame-alist'. +**** New frame parameters ‘horizontal-scroll-bars’ and + ‘scroll-bar-height’ to set horizontal scroll bars and their height + for individual frames and in ‘default-frame-alist’. -**** New functions 'frame-scroll-bar-height' and - 'window-scroll-bar-height' return the height of horizontal scroll +**** New functions ‘frame-scroll-bar-height’ and + ‘window-scroll-bar-height’ return the height of horizontal scroll bars on a specific frame or window. -**** 'set-window-scroll-bars' now accepts five parameters where the last - two specify height and type of the window's horizontal scroll bar. +**** ‘set-window-scroll-bars’ now accepts five parameters where the last + two specify height and type of the window’s horizontal scroll bar. -**** 'window-scroll-bars' now returns type and sizes of horizontal scroll +**** ‘window-scroll-bars’ now returns type and sizes of horizontal scroll bars too. -**** New buffer-local variables 'horizontal-scroll-bar' and - 'scroll-bar-height'. +**** New buffer-local variables ‘horizontal-scroll-bar’ and + ‘scroll-bar-height’. +++ -*** New functions 'frame-geometry' and 'frame-edges' give access to a -frame's geometry. +*** New functions ‘frame-geometry’ and ‘frame-edges’ give access to a +frame’s geometry. +++ -*** New functions 'mouse-absolute-pixel-position' and -'set-mouse-absolute-pixel-position' get/set screen coordinates of the +*** New functions ‘mouse-absolute-pixel-position’ and +‘set-mouse-absolute-pixel-position’ get/set screen coordinates of the mouse cursor. +++ -*** The function 'window-edges' now accepts three additional arguments to +*** The function ‘window-edges’ now accepts three additional arguments to retrieve body, absolute and pixel edges of the window. +++ -*** The functions 'window-inside-edges', 'window-inside-pixel-edges' and -'window-inside-absolute-pixel-edges' have been renamed to respectively -'window-body-edges', 'window-body-pixel-edges' and -'window-absolute-body-pixel-edges'. The old names are kept as aliases. +*** The functions ‘window-inside-edges’, ‘window-inside-pixel-edges’ and +‘window-inside-absolute-pixel-edges’ have been renamed to respectively +‘window-body-edges’, ‘window-body-pixel-edges’ and +‘window-absolute-body-pixel-edges’. The old names are kept as aliases. +++ -*** New function 'window-absolute-pixel-position' to get the screen +*** New function ‘window-absolute-pixel-position’ to get the screen coordinates of a visible buffer position. +++ -*** The height of a frame's menu and tool bar are no longer counted in the -frame's text height. This means that the text height stands only for -the height of the frame's root window plus that of the echo area (if +*** The height of a frame’s menu and tool bar are no longer counted in the +frame’s text height. This means that the text height stands only for +the height of the frame’s root window plus that of the echo area (if present). This was already the behavior for frames with external tool and menu bars (like in the Gtk builds) but has now been extended to all builds. @@ -1894,26 +1895,26 @@ they display when setting default font, menu bar, fringe width, or scroll bars. In particular, maximized and fullscreen frames are conceptually never resized if such settings change. For fullheight and fullwidth frames, the behavior may depend on the toolkit used. -**** New option 'frame-inhibit-implied-resize' if non-nil, means that +**** New option ‘frame-inhibit-implied-resize’ if non-nil, means that setting default font, menu bar, fringe width, or scroll bars of a specific frame does not resize that frame in order to preserve the number of columns or lines it displays. +++ -*** New function 'window-preserve-size' allows you to preserve the size of -a window without "fixing" it. It's supported by 'fit-window-to-buffer', -'temp-buffer-resize-mode' and 'display-buffer'. +*** New function ‘window-preserve-size’ allows you to preserve the size of +a window without “fixing” it. It’s supported by ‘fit-window-to-buffer’, +‘temp-buffer-resize-mode’ and ‘display-buffer’. +++ -*** New 'display-buffer' action function 'display-buffer-use-some-frame'. +*** New ‘display-buffer’ action function ‘display-buffer-use-some-frame’. This displays the buffer in an existing frame other than the current frame, and allows the caller to specify a frame predicate to exclude frames. +++ -*** New minor mode 'window-divider-mode' and options -'window-divider-default-places', 'window-divider-default-bottom-width' -and 'window-divider-default-right-width'. +*** New minor mode ‘window-divider-mode’ and options +‘window-divider-default-places’, ‘window-divider-default-bottom-width’ +and ‘window-divider-default-right-width’. --- ** Tearoff menus and detachable toolbars for Gtk+ have been removed. @@ -1924,17 +1925,17 @@ Those features have been deprecated in Gtk+ for a long time. +++ *** etags no longer qualifies class members by default. -By default, 'etags' will not qualify class members for Perl and C-like +By default, ‘etags’ will not qualify class members for Perl and C-like object-oriented languages with their class names and namespaces, and will remove qualifications used explicitly in the code from the tag names it puts in TAGS files. This is so the etags.el back-end for -'xref-find-definitions' is more accurate and produces less false +‘xref-find-definitions’ is more accurate and produces less false positives. Use --class-qualify (-Q) if you want the old default behavior of qualifying class members in C++, Java, Objective C, and Perl. Note -that using -Q might make some class members become "unknown" to 'M-.' -('xref-find-definitions'); if so, you can use 'C-u M-.' to specify the +that using -Q might make some class members become “unknown” to ‘M-.’ +(‘xref-find-definitions’); if so, you can use ‘C-u M-.’ to specify the qualified names by hand. +++ @@ -1950,7 +1951,7 @@ Names of packages, functions, and types are tagged. +++ *** Improved support for Lua -Etags now tags functions even if the "function" keyword follows some +Etags now tags functions even if the ‘function’ keyword follows some whitespace at line beginning. @@ -1961,7 +1962,7 @@ whitespace at line beginning. This includes the makefile.w32-in files in various subdirectories, and the support files. The file nt/configure.bat now just tells the user to use the procedure described in nt/INSTALL, by running the Posix -'configure' script in the top-level directory. +‘configure’ script in the top-level directory. --- ** Building Emacs for MS-Windows requires at least Windows XP @@ -1976,8 +1977,8 @@ of Windows starting with Windows 9X. MS-Windows as they are on other platforms. --- -** On OS X, configure creates a Cocoa ("Nextstep") build by default. -Pass '--without-ns' to configure to create an X11 build, the old default. +** On OS X, configure creates a Cocoa (“Nextstep”) build by default. +Pass ‘--without-ns’ to configure to create an X11 build, the old default. --- ** OS X 10.5 or older is no longer supported. @@ -1986,16 +1987,16 @@ Pass '--without-ns' to configure to create an X11 build, the old default. ** OS X on PowerPC is no longer supported. --- -** New variable 'ns-use-fullscreen-animation' controls animation for +** New variable ‘ns-use-fullscreen-animation’ controls animation for non-native NS fullscreen. The default is nil. Set to t to enable animation when entering and leaving fullscreen. For native OSX fullscreen this has no effect. --- -** The new function 'w32-application-type' returns the type of an +** The new function ‘w32-application-type’ returns the type of an MS-Windows application given the name of its executable program file. -** New variable 'w32-pipe-buffer-size'. +** New variable ‘w32-pipe-buffer-size’ It can be used to tune the size of the buffer of pipes created for communicating with subprocesses, when the program run by a subprocess exhibits unusual buffering behavior. Default is zero, which lets the diff --git a/nextstep/README b/nextstep/README index fe87802..65e7157 100644 --- a/nextstep/README +++ b/nextstep/README @@ -15,7 +15,7 @@ adapted to GNUstep, a free OpenStep implementation, and in 2008 it was merged to the GNU Emacs trunk and released with Emacs 23. Around the same time a separate Mac-only port using the Carbon APIs and descending from a 2001 MacOS 8/9 port of Emacs 21 was removed. (It -remains available externally under the name "mac".) +remains available externally under the name “mac”.) OVERVIEW OF COCOA AND OBJECTIVE-C @@ -25,11 +25,11 @@ superset of C. Anybody with experience with iOS or modern OS X application development should feel at home. A method call in Objective-C differs from most other languages in the -fact that it doesn't have a normal name. Instead, the method name is +fact that it doesn’t have a normal name. Instead, the method name is made up of the name of each parameter. An exception to this rule are methods without parameters. -The following calls a method in the object 'anObject'. +The following calls a method in the object ‘anObject’. [anObject alpha:1 beta:2 gamma:3]; @@ -55,8 +55,8 @@ Classes are declared like the following: modify the NS code over a long period of time. Keep the code simple and avoid language constructs that makes the code hard to maintain. -* Don't use macros and types intended for the XCode Interface Builder, - like 'IBAction'. +* Don’t use macros and types intended for the XCode Interface Builder, + like ‘IBAction’. * The NS interface should work on all version of OS X from 10.6.8 (Snow Leopard) to the latest official release. @@ -70,8 +70,8 @@ Classes are declared like the following: The NS interface features a printf-based trace package that prints the call tree of selected functions in the Cocoa interface, plus various extra information. It can be enabled by uncommenting the line -defining 'NSTRACE_ENABLED' in "nsterm.h". To enable more output, -uncomment the lines defining symbols starting with 'NSTRACE_GROUP'. +defining ‘NSTRACE_ENABLED’ in nsterm.h. To enable more output, +uncomment the lines defining symbols starting with ‘NSTRACE_GROUP’. GNUSTEP AND OTHER COMPATIBLE SYSTEMS @@ -102,3 +102,27 @@ The INSTALL file in this directory for compilation instructions. The Nextstep section in the etc/TODO file for a list of ideas for future development. + + +---------------------------------------------------------------------- +Copyright 2008-2016 Free Software Foundation, Inc. + +This file is part of GNU Emacs. + +GNU Emacs is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +GNU Emacs is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with GNU Emacs. If not, see . + + +Local variables: +coding: utf-8 +end: commit 26b56dc739460bfd35bd12b4aca7434d381d9ef5 Author: Paul Eggert Date: Mon Mar 14 08:40:08 2016 -0700 Fix some single quotes in documentation * doc/emacs/anti.texi (Antinews): Avoid confusion in info and PDF when documenting quoting styles. * etc/NEWS, nextstep/README: In these plain text files, quote 'like this' consistently, rather than also (sometimes) ‘like this’ or (more often) `like this'. diff --git a/doc/emacs/anti.texi b/doc/emacs/anti.texi index aadc85a..68a65a7 100644 --- a/doc/emacs/anti.texi +++ b/doc/emacs/anti.texi @@ -75,9 +75,9 @@ benefit, this removes many useless entries at the beginning of the @kbd{C-h b} output. The @code{electric-quote-mode} has been deleted, so there's only the one true quoting method now---using the plain-@acronym{ASCII} quote characters. And if that's not enough, the -doc strings and other messages show text quoted `like this' and "like -this" as they were written, instead of arbitrarily replacing them -with Unicode ``curved quote'' characters. The +doc strings and other messages show text quoted @t{`like this'} +as they were written, instead of arbitrarily replacing them +with Unicode ``curved quote'' characters @t{‘like this’}. The @code{text-quoting-style} variable becomes therefore unneeded and was removed. As result, text produced by Emacs can be sent to those venerable teletypes again, yeah! diff --git a/etc/NEWS b/etc/NEWS index ffeeaa8..0b2ea6c 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -12,7 +12,7 @@ See file HISTORY for a list of GNU Emacs versions and release dates. See files NEWS.24, NEWS.23, NEWS.22, NEWS.21, NEWS.20, NEWS.19, NEWS.18, and NEWS.1-17 for changes in older Emacs versions. -You can narrow news to a specific version by calling `view-emacs-news' +You can narrow news to a specific version by calling 'view-emacs-news' with a prefix argument or by typing C-u C-h C-n. Temporary note: @@ -94,17 +94,17 @@ to be owned by that group, and the helper program for updating them to be installed setgid. The option now defaults to the 'games' group. --- -** The `grep-changelog' script (and its manual page) are no longer included. +** The 'grep-changelog' script (and its manual page) are no longer included. It has no particular connection to Emacs and has not changed in years, so if you want to use it, you can always take a copy from an older Emacs. --- ** Emacs 25 comes with a new set of icons. Various resolutions are available as etc/images/icons/hicolor/*/apps/emacs.png. -The old Emacs logo icons are available as `emacs23.png' in the same location. +The old Emacs logo icons are available as 'emacs23.png' in the same location. --- -** New make target `check-expensive' to run additional tests. +** New make target 'check-expensive' to run additional tests. This includes all tests which run via "make check", plus additional tests which take more time to perform. @@ -113,14 +113,14 @@ tests which take more time to perform. +++ ** When Emacs is given a file as a command line argument and -`initial-buffer-choice' is non-nil, display both the file and -`initial-buffer-choice'. When Emacs is given more than one file and -`initial-buffer-choice' is non-nil, show `initial-buffer-choice' +'initial-buffer-choice' is non-nil, display both the file and +'initial-buffer-choice'. When Emacs is given more than one file and +'initial-buffer-choice' is non-nil, show 'initial-buffer-choice' and *Buffer List*. This makes Emacs convenient to use from the -command line when `initial-buffer-choice' is non-nil. +command line when 'initial-buffer-choice' is non-nil. +++ -** The value of ‘initial-scratch-message’ is now treated as a doc string +** The value of 'initial-scratch-message' is now treated as a doc string and can contain escape sequences for command keys, quotes, and the like. @@ -129,61 +129,61 @@ and can contain escape sequences for command keys, quotes, and the like. +++ ** Xwidgets: a new feature for embedding native widgets inside Emacs buffers. If you have gtk3 and webkitgtk3 installed, and Emacs was built with -xwidget support, you can access the embedded webkit browser with `M-x +xwidget support, you can access the embedded webkit browser with 'M-x xwidget-webkit-browse-url'. This opens a new buffer with the embedded -browser. The buffer will have a new mode, `xwidget-webkit-mode' -(similar to `image-mode'), which supports the webkit widget. +browser. The buffer will have a new mode, 'xwidget-webkit-mode' +(similar to 'image-mode'), which supports the webkit widget. +++ -*** New functions for xwidget-webkit mode `xwidget-webkit-insert-string', -`xwidget-webkit-adjust-size-dispatch', `xwidget-webkit-back', -`xwidget-webkit-browse-url', `xwidget-webkit-reload', -`xwidget-webkit-current-url', `xwidget-webkit-scroll-backward', -`xwidget-webkit-scroll-forward', `xwidget-webkit-scroll-down', -`xwidget-webkit-scroll-up'. +*** New functions for xwidget-webkit mode 'xwidget-webkit-insert-string', +'xwidget-webkit-adjust-size-dispatch', 'xwidget-webkit-back', +'xwidget-webkit-browse-url', 'xwidget-webkit-reload', +'xwidget-webkit-current-url', 'xwidget-webkit-scroll-backward', +'xwidget-webkit-scroll-forward', 'xwidget-webkit-scroll-down', +'xwidget-webkit-scroll-up'. +++ ** Emacs can now load shared/dynamic libraries (modules). A dynamic Emacs module is a shared library that provides additional functionality for use in Emacs Lisp programs, just like a package -written in Emacs Lisp would. The functions `load', `require', -`load-file', etc. were extended to load such modules, as they do with -Emacs Lisp packages. The new variable `module-file-suffix' holds the -system-dependent value of the file-name extension (`.so' on Posix +written in Emacs Lisp would. The functions 'load', 'require', +'load-file', etc. were extended to load such modules, as they do with +Emacs Lisp packages. The new variable 'module-file-suffix' holds the +system-dependent value of the file-name extension ('.so' on Posix hosts) of the module files. A module should export a C-callable function named -`emacs_module_init', which Emacs will call as part of the call to -`load' or `require' which loads the module. It should also export a -symbol named `plugin_is_GPL_compatible' to indicate that its code is +'emacs_module_init', which Emacs will call as part of the call to +'load' or 'require' which loads the module. It should also export a +symbol named 'plugin_is_GPL_compatible' to indicate that its code is released under the GPL or compatible license; Emacs will refuse to load modules that don't export such a symbol. If a module needs to call Emacs functions, it should do so through the -API defined and documented in the header file `emacs-module.h'. Note +API defined and documented in the header file 'emacs-module.h'. Note that any module that provides Lisp-callable functions will have to use -Emacs functions such as `fset' and `funcall', in order to register its +Emacs functions such as 'fset' and 'funcall', in order to register its functions with the Emacs Lisp interpreter. -Modules can create `user-ptr' Lisp objects that embed pointers to C -struct's defined by the module. This is useful for keeping around +Modules can create 'user-ptr' Lisp objects that embed pointers to C +structs defined by the module. This is useful for keeping around complex data structures created by a module, to be passed back to the module's functions. User-ptr objects can also have associated "finalizers" -- functions to be run when the object is GC'ed; this is useful for freeing any resources allocated for the underlying data structure, such as memory, open file descriptors, etc. A new -predicate `user-ptrp' returns non-nil if its argument is a `user-ptr' +predicate 'user-ptrp' returns non-nil if its argument is a 'user-ptr' object. Loadable modules in Emacs are an experimental feature, and subject to change in future releases. For that reason, their support is disabled -by default, and must be enabled by using the `--with-modules' option +by default, and must be enabled by using the '--with-modules' option at configure time. +++ ** Network security (TLS/SSL certificate validity and the like) is added via the new Network Security Manager (NSM) and controlled via -the `network-security-level' variable. +the 'network-security-level' variable. +++ ** C-h l now also lists the commands that were run. @@ -197,46 +197,46 @@ select-enable-primary is ineffective since the system doesn't have the equivalent of a primary selection. +++ -** New option `switch-to-buffer-in-dedicated-window' allows you to -customize how `switch-to-buffer' proceeds interactively when the +** New option 'switch-to-buffer-in-dedicated-window' allows you to +customize how 'switch-to-buffer' proceeds interactively when the selected window is strongly dedicated to its buffer. +++ -** The option `even-window-heights' has been renamed to -`even-window-sizes' and now handles window widths as well. +** The option 'even-window-heights' has been renamed to +'even-window-sizes' and now handles window widths as well. +++ ** terpri gets an optional arg ENSURE to conditionally output a newline. +++ -** `insert-register' now leaves point after the inserted text +** 'insert-register' now leaves point after the inserted text when called interactively. A prefix argument toggles this behavior. +++ -** The new variable `term-file-aliases' replaces some files from lisp/term. -The function `tty-run-terminal-initialization' consults this variable +** The new variable 'term-file-aliases' replaces some files from lisp/term. +The function 'tty-run-terminal-initialization' consults this variable when deciding what terminal-specific initialization code to run. --- -** New variable `system-configuration-features', listing some of the +** New variable 'system-configuration-features', listing some of the main features that Emacs was compiled with. This is mainly intended for use in Emacs bug reports. +++ ** A password is now hidden also when typed in batch mode. Another -hiding character but the default `.' can be used by let-binding the -variable `read-hide-char'. +hiding character but the default '.' can be used by let-binding the +variable 'read-hide-char'. +++ ** The Emacs pseudo-random number generator can be securely seeded. On system where Emacs can access the system entropy or some other -cryptographically secure random stream, it now uses that when `random' -is called with its argument `t'. This allows cryptographically strong +cryptographically secure random stream, it now uses that when 'random' +is called with its argument 't'. This allows cryptographically strong random values; in particular, the Emacs server now uses this facility to produce its authentication key. --- -** New input methods: `tamil-dvorak' and `programmer-dvorak'. +** New input methods: 'tamil-dvorak' and 'programmer-dvorak'. * Editing Changes in Emacs 25.1 @@ -249,17 +249,17 @@ to produce its authentication key. +++ *** Successive single-char deletions are collapsed in the undo-log just like successive char insertions. Which commands invoke this behavior is -controlled by the new `undo-auto-amalgamate' function. See the node +controlled by the new 'undo-auto-amalgamate' function. See the node "Undo" in the ELisp manual for more details. +++ -*** The heuristic used to insert `undo-boundary' after each command +*** The heuristic used to insert 'undo-boundary' after each command has changed, so that if a command causes changes in more than just the -current buffer, Emacs now calls `undo-boundary' in every buffer +current buffer, Emacs now calls 'undo-boundary' in every buffer affected by the command. +++ -** New command `comment-line' bound to `C-x C-;'. +** New command 'comment-line' bound to 'C-x C-;'. ** New and improved facilities for inserting Unicode characters @@ -272,7 +272,7 @@ affected by the command. +++ *** New minor mode electric-quote-mode for quoting ‘like this’ and “like this” -as you type. See also the new variable ‘text-quoting-style’. +as you type. See also the new variable 'text-quoting-style'. --- ** New minor mode global-eldoc-mode is enabled by default. @@ -300,30 +300,30 @@ Bidirectional Parentheses Algorithm (BPA) specified by these Unicode standards. +++ -** You can access `mouse-buffer-menu' (C-down-mouse-1) using C-f10. +** You can access 'mouse-buffer-menu' (C-down-mouse-1) using C-f10. +++ -** New buffer-local `electric-pair-local-mode'. +** New buffer-local 'electric-pair-local-mode'. +++ -** New variable `fast-but-imprecise-scrolling' inhibits +** New variable 'fast-but-imprecise-scrolling' inhibits fontification during full screen scrolling operations, giving less hesitant operation during auto-repeat of C-v, M-v at the cost of possible inaccuracies in the end position. +++ -** New documentation command `describe-symbol'. -Works for functions, variables, faces, etc. It is bound to `C-h o' by +** New documentation command 'describe-symbol'. +Works for functions, variables, faces, etc. It is bound to 'C-h o' by default. +++ -** New function `custom-prompt-customize-unsaved-options' checks for +** New function 'custom-prompt-customize-unsaved-options' checks for unsaved customizations and prompts user to customize (if found). It is intended for adding to 'kill-emacs-query-functions'. +++ -** The old `C-x w' bindings in hi-lock-mode are officially deprecated -in favor of the global `M-s h' bindings introduced in Emacs-23.1. +** The old 'C-x w' bindings in hi-lock-mode are officially deprecated +in favor of the global 'M-s h' bindings introduced in Emacs-23.1. They'll disappear soon. @@ -332,14 +332,14 @@ They'll disappear soon. ** Checkdoc +++ -*** New command `checkdoc-package-keywords' checks if the +*** New command 'checkdoc-package-keywords' checks if the current package keywords are recognized. Set the new option -`checkdoc-package-keywords-flag' to non-nil to make -`checkdoc-current-buffer' call this function automatically. +'checkdoc-package-keywords-flag' to non-nil to make +'checkdoc-current-buffer' call this function automatically. +++ -*** New function `checkdoc-file' checks for style errors. -It's meant for use together with `compile': +*** New function 'checkdoc-file' checks for style errors. +It's meant for use together with 'compile': emacs -batch --eval "(checkdoc-file \"subr.el\")" ** Desktop @@ -354,39 +354,39 @@ recommended to do this as soon as you have firmly upgraded to Emacs to version 206, you can do this with C-u C-u M-x desktop-save. +++ -** New function `bookmark-set-no-overwrite' bound to C-x r M. +** New function 'bookmark-set-no-overwrite' bound to C-x r M. It raises an error if a bookmark of that name already exists, -unlike `bookmark-set' which silently updates an existing bookmark. +unlike 'bookmark-set' which silently updates an existing bookmark. ** Gnus +++ -*** New user options `mm-html-inhibit-images' and `mm-html-blocked-images' +*** New user options 'mm-html-inhibit-images' and 'mm-html-blocked-images' now control how mm-* functions fetch and display images in an HTML -message. Gnus still uses `gnus-inhibit-images' and `gnus-blocked-images' +message. Gnus still uses 'gnus-inhibit-images' and 'gnus-blocked-images' for that purpose, i.e., binds mm-html- variables with those gnus- variables, but other packages do not have to bind gnus- variables now. --- -*** `mm-inline-text-html-with-images' has been removed. -Use `mm-html-inhibit-images' instead. Note that the value is opposite +*** 'mm-inline-text-html-with-images' has been removed. +Use 'mm-html-inhibit-images' instead. Note that the value is opposite in meaning. ** IMAP --- -*** `imap-ssl-program' has been removed, and imap.el uses the internal +*** 'imap-ssl-program' has been removed, and imap.el uses the internal GnuTLS encryption functions if possible. ** JSON --- -*** `json-pretty-print' and `json-pretty-print-buffer' now maintain +*** 'json-pretty-print' and 'json-pretty-print-buffer' now maintain the ordering of object keys by default. --- -*** New commands `json-pretty-print-ordered' and -`json-pretty-print-buffer-ordered' pretty prints JSON objects with +*** New commands 'json-pretty-print-ordered' and +'json-pretty-print-buffer-ordered' pretty prints JSON objects with object keys sorted alphabetically. +++ @@ -396,29 +396,29 @@ programming languages in the same buffer, like literate programming environments or ANTLR programs with embedded Python code. A major mode can provide indentation context for a sub-mode through -the `prog-indentation-context' variable. To support this, modes that -provide indentation should use `prog-widen' instead of `widen' and -`prog-first-column' instead of a literal zero. See the node +the 'prog-indentation-context' variable. To support this, modes that +provide indentation should use 'prog-widen' instead of 'widen' and +'prog-first-column' instead of a literal zero. See the node "Mode-Specific Indent" in the ELisp manual for more details. ** Prettify Symbols mode +++ *** Prettify Symbols mode supports custom composition predicates. By -overriding the default `prettify-symbols-compose-predicate', modes can +overriding the default 'prettify-symbols-compose-predicate', modes can specify in which contexts a symbol may be displayed as some Unicode -character. `prettify-symbols-default-compose-p' is the default which +character. 'prettify-symbols-default-compose-p' is the default which is suitable for most programming languages such as C or Lisp (but not (La)TeX). +++ *** Symbols can be unprettified while point is inside them. -New variable `prettify-symbols-unprettify-at-point' configures this. +New variable 'prettify-symbols-unprettify-at-point' configures this. ** Enhanced xterm support --- -*** The new variable `xterm-screen-extra-capabilities' for configuring xterm. +*** The new variable 'xterm-screen-extra-capabilities' for configuring xterm. This variable tells Emacs which advanced capabilities are available in the xterm terminal emulator used to display Emacs text-mode frames. The default is to check each capability, and use it if available. @@ -428,32 +428,32 @@ its NEWS.) --- *** Killing text now also sets the CLIPBOARD/PRIMARY selection in the surrounding GUI (using the OSC-52 escape sequence). This only works -if your xterm supports it and enables the `allowWindowOps' options (disabled +if your xterm supports it and enables the 'allowWindowOps' options (disabled by default at least in Debian, for security reasons). Similarly, you can yank the CLIPBOARD/PRIMARY selection (using the OSC-52 escape sequence) if your xterm has the feature enabled but for that you -additionally need to add `getSelection' to `xterm-extra-capabilities'. +additionally need to add 'getSelection' to 'xterm-extra-capabilities'. +++ -*** `xterm-mouse-mode' now supports mouse-tracking (if your xterm supports it). +*** 'xterm-mouse-mode' now supports mouse-tracking (if your xterm supports it). --- -** The way to turn on and off `save-place' mode has changed. +** The way to turn on and off 'save-place' mode has changed. It is no longer sufficient to load the saveplace library and set -`save-place' non-nil. Instead, use the two new minor modes: -`save-place-mode' turns on saving last place in every file, and -`save-place-local-mode' does that only for the file in whose buffer it -is invoked. The `save-place' variable is now an obsolete alias for -`save-place-mode', which replaces it, and `toggle-save-place' is an -obsolete alias for the new `save-place-local-mode' command. +'save-place' non-nil. Instead, use the two new minor modes: +'save-place-mode' turns on saving last place in every file, and +'save-place-local-mode' does that only for the file in whose buffer it +is invoked. The 'save-place' variable is now an obsolete alias for +'save-place-mode', which replaces it, and 'toggle-save-place' is an +obsolete alias for the new 'save-place-local-mode' command. ** ERC +++ *** ERC can now hide message types by network or channel. -`erc-hide-list' will hide all messages of the specified type, while -`erc-network-hide-list' and `erc-channel-hide-list' will only hide the +'erc-hide-list' will hide all messages of the specified type, while +'erc-network-hide-list' and 'erc-channel-hide-list' will only hide the specified message types for the respective specified targets. --- @@ -468,14 +468,14 @@ being made case-sensitive in Emacs 24.2. --- *** New commands, key binds, and menu items. -**** `<' and `>' for navigating previous and next tracks in playlist +**** '<' and '>' for navigating previous and next tracks in playlist -**** New play/pause command `mpc-toggle-play' bound to `s' +**** New play/pause command 'mpc-toggle-play' bound to 's' -**** `g' bound to new command `mpc-seek-current' will navigate current +**** 'g' bound to new command 'mpc-seek-current' will navigate current track. -**** New commands `mpc-toggle-{consume,repeat,single,shuffle}' for +**** New commands 'mpc-toggle-{consume,repeat,single,shuffle}' for toggling playback modes. --- @@ -493,7 +493,7 @@ MPD supports the XDG base directory specification since version 0.17.6. ** Midnight-mode --- -*** `midnight-mode' is now a proper minor mode. +*** 'midnight-mode' is now a proper minor mode. --- *** clean-buffer-*-regexps can now specify buffers via predicate functions. @@ -503,22 +503,22 @@ MPD supports the XDG base directory specification since version 0.17.6. +++ *** New "external" package status. An external package is any installed package that's not built-in and -not from `package-user-dir', which usually means it's from an entry in -`package-directory-list'. They are treated much like built-in +not from 'package-user-dir', which usually means it's from an entry in +'package-directory-list'. They are treated much like built-in packages, in that they cannot be deleted through the package menu and are not considered for upgrades. The effect is that a user can manually place a specific version of a -package inside `package-directory-list' and the package menu will +package inside 'package-directory-list' and the package menu will always respect that. +++ *** If a package is available on multiple archives and one has higher -priority (as per `package-archive-priorities') only that one is -listed. This can be configured with `package-menu-hide-low-priority'. +priority (as per 'package-archive-priorities') only that one is +listed. This can be configured with 'package-menu-hide-low-priority'. +++ -*** `package-menu-toggle-hiding' now toggles the hiding of packages. +*** 'package-menu-toggle-hiding' now toggles the hiding of packages. This includes the above-mentioned low-priority packages, as well as available packages whose version is lower than the currently installed version (which were previously impossible to display). @@ -536,52 +536,52 @@ ASYNC argument. If it is non-nil, package.el performs the download(s) asynchronously. --- -*** New variable `package-menu-async' controls whether the +*** New variable 'package-menu-async' controls whether the package-menu uses asynchronous downloads. --- -*** `package-install-from-buffer' and `package-install-file' work on directories. +*** 'package-install-from-buffer' and 'package-install-file' work on directories. This follows the same rules as installing from a .tar file, except the -pkg file is optional. --- *** Packages which are dependencies of other packages cannot be deleted. -The FORCE argument to `package-delete' overrides this. +The FORCE argument to 'package-delete' overrides this. --- -*** New custom variable `package-selected-packages' tracks packages +*** New custom variable 'package-selected-packages' tracks packages which were installed by the user (as opposed to installed as dependencies). This variable can also be manually customized. --- -*** New command `package-install-selected-packages' installs all -packages from `package-selected-packages' which are currently missing. +*** New command 'package-install-selected-packages' installs all +packages from 'package-selected-packages' which are currently missing. --- -*** `package-install' function now takes a DONT-SELECT argument. If +*** 'package-install' function now takes a DONT-SELECT argument. If this function is called interactively or if DONT-SELECT is nil, add the -package being installed to `package-selected-packages'. +package being installed to 'package-selected-packages'. --- -*** New command `package-autoremove' removes all packages which were +*** New command 'package-autoremove' removes all packages which were installed strictly as dependencies but are no longer needed. +++ ** Shell -When you invoke `shell' interactively, the *shell* buffer will now +When you invoke 'shell' interactively, the *shell* buffer will now display in a new window. However, you can customize this behavior via -the `display-buffer-alist' variable. For example, to get +the 'display-buffer-alist' variable. For example, to get the old behavior -- *shell* buffer displays in current window -- use (add-to-list 'display-buffer-alist '("^\\*shell\\*$" . (display-buffer-same-window))). ** EIEIO +++ -*** The `:protection' slot option is not obeyed any more. +*** The ':protection' slot option is not obeyed any more. +++ -*** The `newname' argument to constructors is optional&deprecated. -If you need your objects to be named, do it by inheriting from `eieio-named'. +*** The 'newname' argument to constructors is optional&deprecated. +If you need your objects to be named, do it by inheriting from 'eieio-named'. +++ *** The -list-p and -child-p functions are declared obsolete. +++ @@ -592,18 +592,18 @@ If you need your objects to be named, do it by inheriting from `eieio-named'. *** defgeneric and defmethod are declared obsolete. Use the equivalent facilities from cl-generic.el instead. +++ -*** `constructor' is now an obsolete alias for `make-instance'. ---- `pcase' accepts a new UPattern `eieio'. +*** 'constructor' is now an obsolete alias for 'make-instance'. +--- 'pcase' accepts a new UPattern 'eieio'. ** ido +++ -*** New command `ido-bury-buffer-at-head' bound to C-S-b -Bury the buffer at the head of `ido-matches', analogous to how C-k +*** New command 'ido-bury-buffer-at-head' bound to C-S-b +Bury the buffer at the head of 'ido-matches', analogous to how C-k kills the buffer at head. --- -*** A prefix argument to `ido-restrict-to-matches' will reverse its +*** A prefix argument to 'ido-restrict-to-matches' will reverse its meaning, and the list is restricted to those elements that do not match the current input. @@ -611,18 +611,18 @@ match the current input. +++ *** You can use and arrow keys to move through history by lines. -The new commands `next-line-or-history-element' and -`previous-line-or-history-element', bound to and in the +The new commands 'next-line-or-history-element' and +'previous-line-or-history-element', bound to and in the minibuffer, allow by-line movement through minibuffer history, similarly to an ordinary buffer. Only when point moves over the bottom/top of the minibuffer it goes to the next/previous history -element. `M-p' and `M-n' still move directly to previous/next history +element. 'M-p' and 'M-n' still move directly to previous/next history item as before. ** Search and Replace +++ -*** `isearch' and `query-replace' can now perform character folding in matches. +*** 'isearch' and 'query-replace' can now perform character folding in matches. This is analogous to case folding, but instead of disregarding case variants, it disregards wider classes of distinctions between similar characters. (Case folding is a special case of character folding.) @@ -634,43 +634,43 @@ variants of double quotes (like “ and ”), and the letter a will match all of its accented cousins, even those composed of multiple characters, as well as many other symbols like ℀, ℁, ⒜, and ⓐ. -Character folding is enabled by customizing `search-default-mode' to -the value `character-fold-to-regexp'. You can also toggle character -folding in the middle of a search by typing `M-s ''. +Character folding is enabled by customizing 'search-default-mode' to +the value 'character-fold-to-regexp'. You can also toggle character +folding in the middle of a search by typing 'M-s ''. -`query-replace' honors character folding if the new variable -`replace-character-fold' is customized to a non-nil value. +'query-replace' honors character folding if the new variable +'replace-character-fold' is customized to a non-nil value. +++ -*** New user option `search-default-mode'. +*** New user option 'search-default-mode'. This option specifies the default mode for Isearch. The default value, nil specifies that Isearch does literal searches (however, -`case-fold-search' and `isearch-lax-whitespace' may still be applied, +'case-fold-search' and 'isearch-lax-whitespace' may still be applied, as in previous Emacs versions). +++ -*** New function `character-fold-to-regexp' can be used +*** New function 'character-fold-to-regexp' can be used by searching commands to produce a regexp matching anything that character-folds into STRING. +++ *** The new M-s M-w key binding uses eww to search the web for the text in the region. The search engine to use for this is specified by -the customizable variable `eww-search-prefix'. +the customizable variable 'eww-search-prefix'. +++ *** Query-replace history is enhanced. When query-replace reads the FROM string from the minibuffer, typing -`M-p' will now show previous replacements as "FROM SEP TO", where FROM +'M-p' will now show previous replacements as "FROM SEP TO", where FROM and TO are the original text and its replacement, and SEP is an arrow -string defined by the new variable `query-replace-from-to-separator'. -To select a prior replacement, type `M-p' until the desired +string defined by the new variable 'query-replace-from-to-separator'. +To select a prior replacement, type 'M-p' until the desired replacement appears in the minibuffer, and then exit the minibuffer by typing RET. ** Calc +++ -*** If `quick-calc' is called with a prefix argument, insert the +*** If 'quick-calc' is called with a prefix argument, insert the result of the calculation into the current buffer. +++ @@ -681,16 +681,16 @@ instrumented function. ** ElDoc +++ -*** New minor mode `global-eldoc-mode' -It is turned on by default, and affects `*scratch*' and other buffers +*** New minor mode 'global-eldoc-mode' +It is turned on by default, and affects '*scratch*' and other buffers whose major mode supports Emacs Lisp. --- -*** `eldoc-documentation-function' now defaults to `ignore' +*** 'eldoc-documentation-function' now defaults to 'ignore' --- -*** `describe-char-eldoc' displays information about character at point, -and can be used as a default value of `eldoc-documentation-function'. It is +*** 'describe-char-eldoc' displays information about character at point, +and can be used as a default value of 'eldoc-documentation-function'. It is useful when, for example, one needs to distinguish various spaces (e.g. ] [, ] [, ] [, etc.) while using mono-spaced font. @@ -700,17 +700,17 @@ useful when, for example, one needs to distinguish various spaces (e.g. ] [, *** HTML can now be rendered using variable-width fonts. +++ -*** A new command `F' (`eww-toggle-fonts') can be used to toggle +*** A new command 'F' ('eww-toggle-fonts') can be used to toggle whether to use variable-pitch fonts or not. The user can also -customize the `shr-use-fonts' variable. +customize the 'shr-use-fonts' variable. +++ -*** A new command `R' (`eww-readable') will try do identify the main +*** A new command 'R' ('eww-readable') will try do identify the main textual parts of a web page and display only that, leaving menus and the like off the page. +++ -*** A new command `D' (`eww-toggle-paragraph-direction') allows you to +*** A new command 'D' ('eww-toggle-paragraph-direction') allows you to toggle the paragraph direction between left-to-right and right-to-left. --- @@ -722,11 +722,11 @@ buffers you want to keep separate. pages visited) is now preserved in the desktop file. +++ -*** `eww-after-render-hook' is now called after eww has rendered +*** 'eww-after-render-hook' is now called after eww has rendered the data in the buffer. --- -*** The `eww-reload' command now takes a prefix to not reload via +*** The 'eww-reload' command now takes a prefix to not reload via the net, but just use the local copy of the HTML. +++ @@ -736,10 +736,10 @@ interact with this DOM. See the Emacs Lisp manual for interface details. +++ -*** `mailcap-mime-data' is now consulted when displaying PDF files. +*** 'mailcap-mime-data' is now consulted when displaying PDF files. +++ -*** The new `S' command will list all eww buffers, and allow managing +*** The new 'S' command will list all eww buffers, and allow managing them. --- @@ -756,19 +756,19 @@ transformed into multipart/related messages before sending. ** In Show Paren Mode, a parenthesis can be highlighted when point stands inside it, and certain parens can be highlighted when point is at BOL or EOL, or in whitespace there. To enable these, customize, -respectively, `show-paren-when-point-inside-paren' or -`show-paren-when-point-in-periphery'. +respectively, 'show-paren-when-point-inside-paren' or +'show-paren-when-point-in-periphery'. --- ** If gpg2 exists on the system, it is now used as the default value -of `epg-gpg-program' (instead of gpg). +of 'epg-gpg-program' (instead of gpg). ** Lisp mode --- -*** Strings after `:documentation' are highlighted as docstrings. +*** Strings after ':documentation' are highlighted as docstrings. This enhances Lisp mode fontification to handle documentation of the -form `(:documentation "the doc string")' used in Common Lisp code for +form '(:documentation "the doc string")' used in Common Lisp code for CLOS class and slot documentation. ** Rectangle editing @@ -778,91 +778,91 @@ CLOS class and slot documentation. +++ *** C-x C-x in rectangle-mark-mode now cycles through the four corners. -*** `string-rectangle' provides on-the-fly preview of the result. +*** 'string-rectangle' provides on-the-fly preview of the result. +++ -** New font-lock functions `font-lock-ensure' and `font-lock-flush'. -These should be used in preference to `font-lock-fontify-buffer' when +** New font-lock functions 'font-lock-ensure' and 'font-lock-flush'. +These should be used in preference to 'font-lock-fontify-buffer' when called from Lisp. --- -** Macro `minibuffer-with-setup-hook' can optionally append a function -to `minibuffer-setup-hook'. +** Macro 'minibuffer-with-setup-hook' can optionally append a function +to 'minibuffer-setup-hook'. -If the first argument of the macro is of the form `(:append FUN)', -then FUN will be appended to `minibuffer-setup-hook', instead of +If the first argument of the macro is of the form '(:append FUN)', +then FUN will be appended to 'minibuffer-setup-hook', instead of prepending it. ** cl-lib +++ -*** New functions `cl-fresh-line', `cl-digit-char-p', and `cl-parse-integer'. +*** New functions 'cl-fresh-line', 'cl-digit-char-p', and 'cl-parse-integer'. --- -*** `pcase' accepts the new UPattern `cl-struct'. +*** 'pcase' accepts the new UPattern 'cl-struct'. ** Calendar and diary +++ -*** The default `diary-file' is now located in .emacs.d. +*** The default 'diary-file' is now located in .emacs.d. +++ *** New commands to insert diary entries with Chinese dates: -`diary-chinese-insert-anniversary-entry' `diary-chinese-insert-entry' -`diary-chinese-insert-monthly-entry', `diary-chinese-insert-yearly-entry'. +'diary-chinese-insert-anniversary-entry' 'diary-chinese-insert-entry' +'diary-chinese-insert-monthly-entry', 'diary-chinese-insert-yearly-entry'. +++ *** The calendar can now list and mark diary entries with Chinese dates. -See `diary-chinese-list-entries' and `diary-chinese-mark-entries'. +See 'diary-chinese-list-entries' and 'diary-chinese-mark-entries'. --- -*** The option `calendar-mode-line-format' can now be nil, +*** The option 'calendar-mode-line-format' can now be nil, which means to do nothing special with the mode line in calendars. +++ -*** New option `calendar-weekend-days'. +*** New option 'calendar-weekend-days'. The option customizes which day headers receive the -`calendar-weekend-header' face. +'calendar-weekend-header' face. --- -*** New optional args N and STRING for ‘holiday-greek-orthodox-easter’. +*** New optional args N and STRING for 'holiday-greek-orthodox-easter'. --- *** Many items obsolete since at least version 23.1 have been removed. The majority were function/variable/face aliases, too numerous to list here. The remainder were: -**** Functions `calendar-one-frame-setup', `calendar-only-one-frame-setup', -`calendar-two-frame-setup', `european-calendar', `american-calendar'. +**** Functions 'calendar-one-frame-setup', 'calendar-only-one-frame-setup', +'calendar-two-frame-setup', 'european-calendar', 'american-calendar'. -**** Hooks `cal-menu-load-hook', `cal-x-load-hook'. +**** Hooks 'cal-menu-load-hook', 'cal-x-load-hook'. -**** Macro `calendar-for-loop'. +**** Macro 'calendar-for-loop'. -**** Variables `european-calendar-style', `diary-face', `hebrew-holidays-{1,4}'. +**** Variables 'european-calendar-style', 'diary-face', 'hebrew-holidays-{1,4}'. -**** The nil and list forms of `diary-display-function'. +**** The nil and list forms of 'diary-display-function'. +++ -** New ERT function `ert-summarize-tests-batch-and-exit'. +** New ERT function 'ert-summarize-tests-batch-and-exit'. If the output of ERT tests in batch mode execution can be saved to a log file, then it can be passed as an argument to the above function to produce a neat summary. --- -** New js.el option `js-indent-first-init'. +** New js.el option 'js-indent-first-init'. ** Info --- ** Info mode now displays symbol names in fixed-pitch font. -If you want to get the old behavior back, customize the `Info-quoted' +If you want to get the old behavior back, customize the 'Info-quoted' face to use the same definitions as the default face. --- -*** `Info-fontify-maximum-menu-size' can be t for no limit. +*** 'Info-fontify-maximum-menu-size' can be t for no limit. +++ -*** `info-display-manual' can now be given a prefix argument which (any +*** 'info-display-manual' can now be given a prefix argument which (any non-nil value) directs the command to limit the completion alternatives to currently visited manuals. @@ -872,7 +872,7 @@ alternatives to currently visited manuals. ** Rmail +++ -*** The Rmail commands `d', `C-d' and `u' take optional repeat counts +*** The Rmail commands 'd', 'C-d' and 'u' take optional repeat counts to delete or undelete multiple messages. +++ @@ -880,24 +880,24 @@ to delete or undelete multiple messages. libxml2 or if you have the Lynx browser installed. By default, Rmail will display the HTML version of a mail message that has both HTML and plain text parts, if display of HTML email is possible; customize the -`rmail-mime-prefer-html' option to `nil' if you don't want that. +'rmail-mime-prefer-html' option to 'nil' if you don't want that. +++ *** In the commands that make summaries by subject, recipients, or senders, you can no longer use commas to separate regular expressions. +++ -** SES now supports local printer functions; see `ses-define-local-printer'. +** SES now supports local printer functions; see 'ses-define-local-printer'. ** Shell-script Mode --- -*** In sh-mode you can now use `sh-shell' as a file-local variable to +*** In sh-mode you can now use 'sh-shell' as a file-local variable to specify the type of shell in use (bash, csh, etc). --- -*** New value `always' for `sh-indent-after-continuation'. +*** New value 'always' for 'sh-indent-after-continuation'. This provides old-style ("dumb") indentation of continued lines. -See the doc string of `sh-indent-after-continuation' for details. +See the doc string of 'sh-indent-after-continuation' for details. ** TLS --- @@ -908,33 +908,33 @@ See the doc string of `sh-indent-after-continuation' for details. program is used instead. This program used to be run in --insecure mode by default, but has now changed to be secure instead, and will fail if you try to connect to non-verifiable hosts. This is -controlled by the `tls-program' variable. +controlled by the 'tls-program' variable. ** URL +++ *** The URL package accepts now the protocols "ssh", "scp" and "rsync". -When `url-handler-mode' is enabled, file operations for these +When 'url-handler-mode' is enabled, file operations for these protocols as well as for "telnet" and "ftp" are passed to Tramp. +++ -*** The URL package allows customizing the `url-user-agent' string. -The new `url-user-agent' variable can be customized to be a string or +*** The URL package allows customizing the 'url-user-agent' string. +The new 'url-user-agent' variable can be customized to be a string or a function. --- -*** The new interface variable `url-request-noninteractive' can be used +*** The new interface variable 'url-request-noninteractive' can be used to specify that we're running in a noninteractive context, and that we should not be queried about things like TLS certificate validity. --- -*** `url-mime-accept-string' can now be used as in "interface" -variable, meaning you can bind it around an `url-retrieve' call. +*** 'url-mime-accept-string' can now be used as in "interface" +variable, meaning you can bind it around an 'url-retrieve' call. --- *** If URL is used with a https connection, the first callback argument plist will contain a :peer element that has the output of -`gnutls-peer-status' (if Emacs is built with GnuTLS support). +'gnutls-peer-status' (if Emacs is built with GnuTLS support). ** Tramp @@ -948,21 +948,21 @@ busyboxes. +++ *** Method-specific parameters can be overwritten now with variable -`tramp-connection-properties'. +'tramp-connection-properties'. --- -*** Handler for `file-notify-valid-p' for remote machines that support +*** Handler for 'file-notify-valid-p' for remote machines that support filesystem notifications. ** SQL mode --- -*** New user variable `sql-default-directory' enables remote +*** New user variable 'sql-default-directory' enables remote connections using Tramp. --- -*** New command `sql-send-line-and-next'. -This command, bound to `C-c C-n' by default, sends the current line to +*** New command 'sql-send-line-and-next'. +This command, bound to 'C-c C-n' by default, sends the current line to the SQL process and advances to the next line, skipping whitespace and comments. @@ -972,7 +972,7 @@ comments. ** VC and related modes +++ -*** Basic push support, via `vc-push', bound to `C-x v P'. +*** Basic push support, via 'vc-push', bound to 'C-x v P'. Implemented for Bzr, Git, Hg. As part of this change, the pre-existing (undocumented) command vc-hg-push now behaves slightly differently. @@ -980,36 +980,36 @@ Implemented for Bzr, Git, Hg. As part of this change, the pre-existing *** The new command vc-region-history shows the log+diff of the active region. +++ -*** You can refresh the VC state of a file buffer with `M-x vc-refresh-state'. +*** You can refresh the VC state of a file buffer with 'M-x vc-refresh-state'. This command is useful when you perform version control commands outside Emacs (e.g., from the shell prompt), or if you switch the VC back-end for the buffer's file, or remove it from version control. +++ -*** New option `vc-annotate-background-mode' controls whether -the color range from `vc-annotate-color-map' is applied to the +*** New option 'vc-annotate-background-mode' controls whether +the color range from 'vc-annotate-color-map' is applied to the background or to the foreground. +++ -*** `compare-windows' now compares text with the most recently selected window +*** 'compare-windows' now compares text with the most recently selected window instead of the next window. If you want the previous behavior of comparing with the next window, customize the new option -`compare-windows-get-window-function' to the value -`compare-windows-get-next-window'. +'compare-windows-get-window-function' to the value +'compare-windows-get-next-window'. --- -*** Two new faces `compare-windows-removed' and `compare-windows-added' -replace the face `compare-windows', which is now an obsolete alias for -`compare-windows-added'. +*** Two new faces 'compare-windows-removed' and 'compare-windows-added' +replace the face 'compare-windows', which is now an obsolete alias for +'compare-windows-added'. --- *** The VC state indicator in the mode line now has different faces -corresponding to each of the possible states. See the `vc-faces' +corresponding to each of the possible states. See the 'vc-faces' customization group. --- -*** `log-edit-insert-changelog' converts "(tiny change)" to -"Copyright-paperwork-exempt: yes". Set `log-edit-rewrite-tiny-change' +*** 'log-edit-insert-changelog' converts "(tiny change)" to +"Copyright-paperwork-exempt: yes". Set 'log-edit-rewrite-tiny-change' nil to disable this. --- @@ -1032,52 +1032,52 @@ macro argument expansion, interactive macro evaluation and automatic scanning of #define'd symbols. --- -*** New command `hif-evaluate-macro', bound to `C-c @ e', displays the +*** New command 'hif-evaluate-macro', bound to 'C-c @ e', displays the result of evaluating a macro. --- -*** New command `hif-clear-all-ifdef-define', bound to `C-c @ C', clears -all defined symbols in `hide-ifdef-env'. +*** New command 'hif-clear-all-ifdef-define', bound to 'C-c @ C', clears +all defined symbols in 'hide-ifdef-env'. --- -*** New custom variable `hide-ifdef-header-regexp' to define C/C++ header -file name patterns. Defaults to files whose extension is one of `.h', -`.hh', `.hpp', `.hxx', or `.h++', matched case-insensitively. +*** New custom variable 'hide-ifdef-header-regexp' to define C/C++ header +file name patterns. Defaults to files whose extension is one of '.h', +'.hh', '.hpp', '.hxx', or '.h++', matched case-insensitively. --- -*** New custom variable `hide-ifdef-expand-reinclusion-protection' to prevent +*** New custom variable 'hide-ifdef-expand-reinclusion-protection' to prevent reinclusion protected (a.k.a. "idempotent") header files from being hidden. (This could happen when an idempotent header file is visited again, -when its guard symbol is already defined.) Defaults to `t'. +when its guard symbol is already defined.) Defaults to 't'. --- -*** New custom variable `hide-ifdef-exclude-define-regexp' to define symbol +*** New custom variable 'hide-ifdef-exclude-define-regexp' to define symbol name patterns (e.g. all "FOR_DOXYGEN_ONLY_*") to be ignored when looking for macro definitions. By default, no symbols are ignored. ** TeX mode +++ -*** New custom variable `tex-print-file-extension' to help users who +*** New custom variable 'tex-print-file-extension' to help users who use PDF instead of DVI. +++ *** TeX mode now supports Prettify Symbols mode. When enabling -`prettify-symbols-mode' in a tex-mode buffer, \alpha ... \omega, and +'prettify-symbols-mode' in a tex-mode buffer, \alpha ... \omega, and many other math macros are displayed using unicode characters. +++ -** New `big-indent' style in `whitespace-mode' highlights deep indentation. +** New 'big-indent' style in 'whitespace-mode' highlights deep indentation. By default, 32 consecutive spaces or four consecutive TABs are considered to be too deep, but the new variable -`whitespace-big-indent-regexp' can be customized to change that. +'whitespace-big-indent-regexp' can be customized to change that. --- -** New options in `tildify-mode'. -New options `tildify-space-string', `tildify-pattern', and -`tildify-foreach-region-function' variables make -`tildify-string-alist', `tildify-pattern-alist', and -`tildify-ignored-environments-alist' variables (as well as a few +** New options in 'tildify-mode'. +New options 'tildify-space-string', 'tildify-pattern', and +'tildify-foreach-region-function' variables make +'tildify-string-alist', 'tildify-pattern-alist', and +'tildify-ignored-environments-alist' variables (as well as a few helper functions) obsolete. +++ @@ -1090,41 +1090,41 @@ to a definition. It supersedes and obsoletes many Etags commands, while still using the etags.el code that reads the TAGS tables as one of its back-ends. -The command `xref-find-definitions' replaces `find-tag' and provides +The command 'xref-find-definitions' replaces 'find-tag' and provides an interface to pick one definition among several. -`tags-loop-continue' is now unbound. `xref-pop-marker-stack' replaces -`pop-tag-mark', but has a keybinding (`M-,') different from the one -`pop-tag-mark' used. +'tags-loop-continue' is now unbound. 'xref-pop-marker-stack' replaces +'pop-tag-mark', but has a keybinding ('M-,') different from the one +'pop-tag-mark' used. -`xref-find-definitions-other-window' replaces `find-tag-other-window'. -`xref-find-definitions-other-frame' replaces `find-tag-other-frame'. -`xref-find-apropos' replaces `find-tag-regexp'. +'xref-find-definitions-other-window' replaces 'find-tag-other-window'. +'xref-find-definitions-other-frame' replaces 'find-tag-other-frame'. +'xref-find-apropos' replaces 'find-tag-regexp'. As a result of this, the following commands are now obsolete: -`find-tag-other-window', `find-tag-other-frame', `find-tag-regexp', -`tags-apropos'. +'find-tag-other-window', 'find-tag-other-frame', 'find-tag-regexp', +'tags-apropos'. -`tags-loop-continue' is not obsolete because it's still useful in -`tags-search' and `tags-query-replace', for which there are no direct +'tags-loop-continue' is not obsolete because it's still useful in +'tags-search' and 'tags-query-replace', for which there are no direct replacements yet. +++ -*** Variants of `tags-search' and `tags-query-replace' in Dired were also +*** Variants of 'tags-search' and 'tags-query-replace' in Dired were also replaced by xref-style commands, see the "Dired" section below. +++ *** New variables -`find-tag-marker-ring-length' is now an obsolete alias for -`xref-marker-ring-length'. `find-tag-marker-ring' is now an obsolete -alias for a private variable. `xref-push-marker-stack' and -`xref-pop-marker-stack' should be used instead to manipulate the stack +'find-tag-marker-ring-length' is now an obsolete alias for +'xref-marker-ring-length'. 'find-tag-marker-ring' is now an obsolete +alias for a private variable. 'xref-push-marker-stack' and +'xref-pop-marker-stack' should be used instead to manipulate the stack of searches for definitions. --- -*** `xref-find-definitions' and `describe-function' now display +*** 'xref-find-definitions' and 'describe-function' now display information about mode local overrides (defined by cedet/mode-local.el -`define-overloadable-function' `define-mode-local-overrides'). +'define-overloadable-function' 'define-mode-local-overrides'). The framework's Lisp API is still experimental and can change in major, backward-incompatible ways. @@ -1134,7 +1134,7 @@ backward-incompatible ways. The new package Project provides generic infrastructure for dealing with projects. The main commands included in it are -`project-find-file' and `project-find-regexp'. +'project-find-file' and 'project-find-regexp'. The Lisp API of this package is still experimental. @@ -1159,27 +1159,27 @@ rewritten. There have also been customization changes. +++ -*** New custom variable `eudc-server-hotlist' to allow specifying +*** New custom variable 'eudc-server-hotlist' to allow specifying multiple EUDC servers in init file. +++ -*** Custom variable `eudc-inline-query-format' defaults to completing +*** Custom variable 'eudc-inline-query-format' defaults to completing on email and firstname instead of surname. --- -*** Custom variable `eudc-expansion-overwrites-query' defaults to nil +*** Custom variable 'eudc-expansion-overwrites-query' defaults to nil to avoid interfering with the kill ring. +++ -*** Custom variable `eudc-inline-expansion-format' defaults to +*** Custom variable 'eudc-inline-expansion-format' defaults to "Firstname Surname ". +++ -*** Custom variable `eudc-options-file' defaults to +*** Custom variable 'eudc-options-file' defaults to "~/.emacs.d/eudc-options". --- -*** New custom variable `ldap-ldapsearch-password-prompt-regexp' to +*** New custom variable 'ldap-ldapsearch-password-prompt-regexp' to allow overriding the regular expression that recognizes the ldapsearch command line's password prompt. @@ -1192,24 +1192,24 @@ EUDC's PH backend (eudcb-ph.el) is obsolete. ** Eshell +++ -*** The new built-in command `clear' can scroll window contents out of sight. +*** The new built-in command 'clear' can scroll window contents out of sight. If provided with an optional non-nil argument, the scrollback contents will be cleared. +++ *** New buffer syntax '#', which is equivalent to '#'. This shorthand makes interacting with buffers from eshell more convenient. Custom variable -`eshell-buffer-shorthand', which has been broken for a while, has been +'eshell-buffer-shorthand', which has been broken for a while, has been removed. +++ *** By default, eshell "visual" program buffers (created by -`eshell-visual-commands' and similar custom vars) are no longer killed +'eshell-visual-commands' and similar custom vars) are no longer killed when their processes die. This fixes issues with short-lived commands and makes visual programs more useful in general. For example, if "git log" is a visual command, it will always show the visual command buffer, even if the "git log" process dies. For the old behavior, -make the new option `eshell-destroy-buffer-when-process-dies' non-nil. +make the new option 'eshell-destroy-buffer-when-process-dies' non-nil. ** Browse-url @@ -1223,7 +1223,7 @@ make the new option `eshell-destroy-buffer-when-process-dies' non-nil. *** Support for several ancient browsers is now officially obsolete. +++ -** tar-mode: new `tar-new-entry' command, allowing for new members to +** tar-mode: new 'tar-new-entry' command, allowing for new members to be added to the archive. ** Autorevert @@ -1233,7 +1233,7 @@ be added to the archive. Emacs is compiled with file notification support. --- -*** `auto-revert-use-notify' is set to nil in `global-auto-revert-mode'. +*** 'auto-revert-use-notify' is set to nil in 'global-auto-revert-mode'. See . ** File Notifications @@ -1242,46 +1242,46 @@ See . *** The kqueue library is integrated for *BSD and Mac OS X machines. +++ -*** The new event `stopped' signals, that a file notification watch is +*** The new event 'stopped' signals, that a file notification watch is not active any longer. +++ -*** The new function `file-notify-valid-p' checks, whether a file +*** The new function 'file-notify-valid-p' checks, whether a file notification descriptor still corresponds to an activate watch. ** Dired +++ -*** The command `dired-do-compress' bound to `Z' now can compress +*** The command 'dired-do-compress' bound to 'Z' now can compress directories and decompress zip files. +++ -*** New command `dired-do-compress-to' bound to `c' can be used to +*** New command 'dired-do-compress-to' bound to 'c' can be used to compress many marked files into a single named archive. The compression command is determined from the new -`dired-compress-files-alist' variable. - -+++ -*** New user interface for the `A' and `Q' commands. -These keys, now bound to `dired-do-find-regexp' and -`dired-do-find-regexp-and-replace', work similarly to `xref-find-apropos' -and `xref-query-replace-in-results': they present the matches -in the `*xref*' buffer and let you move through the matches. No need -to use `tags-loop-continue' to resume the search or replace loop. The -previous commands, `dired-do-search' and -`dired-do-query-replace-regexp', are still available, but not bound to -keys; rebind `A' and `Q' to invoke them if you want the old behavior +'dired-compress-files-alist' variable. + ++++ +*** New user interface for the 'A' and 'Q' commands. +These keys, now bound to 'dired-do-find-regexp' and +'dired-do-find-regexp-and-replace', work similarly to 'xref-find-apropos' +and 'xref-query-replace-in-results': they present the matches +in the '*xref*' buffer and let you move through the matches. No need +to use 'tags-loop-continue' to resume the search or replace loop. The +previous commands, 'dired-do-search' and +'dired-do-query-replace-regexp', are still available, but not bound to +keys; rebind 'A' and 'Q' to invoke them if you want the old behavior back. We intend to obsolete the old commands in a future release. ** Tabulated List Mode +++ -*** It is now safe for a mode that derives `tabulated-list-mode' to not -call `tabulated-list-init-header', in which case it will have no +*** It is now safe for a mode that derives 'tabulated-list-mode' to not +call 'tabulated-list-init-header', in which case it will have no header. +++ -*** `tabulated-list-print' takes a second optional argument, update, +*** 'tabulated-list-print' takes a second optional argument, update, which specifies an alternative printing method which is faster when few or no entries have changed. @@ -1307,7 +1307,7 @@ configuration with "gpgconf --reload gpg-agent". +++ ** cl-generic.el provides CLOS-style multiple-dispatch generic functions. -The main entry points are `cl-defgeneric' and `cl-defmethod'. See the +The main entry points are 'cl-defgeneric' and 'cl-defmethod'. See the node "Generic Functions" in the Emacs Lisp manual for more details. --- @@ -1319,25 +1319,25 @@ SCSS (Sassy CSS) files. let-bind the values stored in an alist. --- -** `tildify-mode' allows automatic insertion of hard spaces as one +** 'tildify-mode' allows automatic insertion of hard spaces as one types the text. Breaking line after a single-character words is forbidden by Czech and Polish typography (and may be discouraged in -other languages), so `auto-tildify-mode' makes it easier to create +other languages), so 'auto-tildify-mode' makes it easier to create a typographically-correct documents. --- -** The `seq' library adds sequence manipulation functions and macros +** The 'seq' library adds sequence manipulation functions and macros that complement basic functions provided by subr.el. All functions -are prefixed with `seq-' and work on lists, strings and vectors. -`pcase' accepts a new Upattern `seq'. +are prefixed with 'seq-' and work on lists, strings and vectors. +'pcase' accepts a new Upattern 'seq'. --- -** The `map' library provides map-manipulation functions that work on +** The 'map' library provides map-manipulation functions that work on alists, hash-table and arrays. All functions are prefixed with -`map-'. `pcase' accepts a new UPattern `map'. +'map-'. 'pcase' accepts a new UPattern 'map'. --- -** The `thunk' library provides functions and macros to control the +** The 'thunk' library provides functions and macros to control the evaluation of forms. --- @@ -1348,76 +1348,76 @@ support for JSX, an XML-like syntax extension to ECMAScript. * Incompatible Lisp Changes in Emacs 25.1 --- -** `setq' and `setf' must now be called with an even number of +** 'setq' and 'setf' must now be called with an even number of arguments. The earlier behavior of silently supplying a nil to the last variable when there was an odd number of arguments has been eliminated. +++ -** `syntax-begin-function' is declared obsolete. +** 'syntax-begin-function' is declared obsolete. Removed font-lock-beginning-of-syntax-function and the SYNTAX-BEGIN slot in font-lock-defaults. +++ ** The new implementation of Subword mode affects word movement everywhere. -When Subword mode is turned on, `forward-word', `backward-word', and +When Subword mode is turned on, 'forward-word', 'backward-word', and everything that uses them will move by sub-words, effectively overriding the buffer's syntax table. Lisp programs that shouldn't be affected by Subword mode should call the new functions -`forward-word-strictly' and `backward-word-strictly' instead. +'forward-word-strictly' and 'backward-word-strictly' instead. +++ -** `package-initialize' now sets `package-enable-at-startup' to nil if +** 'package-initialize' now sets 'package-enable-at-startup' to nil if called during startup. Users who call this function in their init file and still expect it to be run after startup should set -`package-enable-at-startup' to t after the call to -`package-initialize'. +'package-enable-at-startup' to t after the call to +'package-initialize'. --- -** `:global' minor mode use `setq-default' rather than `setq'. -This means that you can't use `make-local-variable' and expect them to +** ':global' minor mode use 'setq-default' rather than 'setq'. +This means that you can't use 'make-local-variable' and expect them to "magically" become buffer-local. +++ -** `track-mouse' no longer freezes the shape of the mouse pointer. -The `track-mouse' form no longer refrains from changing the shape of +** 'track-mouse' no longer freezes the shape of the mouse pointer. +The 'track-mouse' form no longer refrains from changing the shape of the mouse pointer for the entire time the body of that form is -executed. Lisp programs that use `track-mouse' for dragging across +executed. Lisp programs that use 'track-mouse' for dragging across large portions of the Emacs display, and want to avoid changes in the -pointer shape during dragging, should bind the variable `track-mouse' -to the special value `dragging' in the body of the form. +pointer shape during dragging, should bind the variable 'track-mouse' +to the special value 'dragging' in the body of the form. --- -** The optional `predicate' argument of `lisp-complete-symbol' no longer +** The optional 'predicate' argument of 'lisp-complete-symbol' no longer has any effect. (This change was made in Emacs 24.4 but was not advertised at the time.) +++ -** `indirect-function' does not signal `void-function' any more. +** 'indirect-function' does not signal 'void-function' any more. This is mostly a bug-fix, since this change was missed back in 24.4 when -symbol-function was changed not to signal `void-function' any more. +symbol-function was changed not to signal 'void-function' any more. +++ -*** As a consequence, the second arg of `indirect-function' is now obsolete. +*** As a consequence, the second arg of 'indirect-function' is now obsolete. +++ ** Comint, term, and compile do not set the EMACS env var any more. Use the INSIDE_EMACS environment variable instead. +++ -** `save-excursion' does not save&restore the mark any more. -Use `save-mark-and-excursion' if you want the old behavior. +** 'save-excursion' does not save&restore the mark any more. +Use 'save-mark-and-excursion' if you want the old behavior. +++ -** `read-buffer' and `read-buffer-function' can now be called with a 4th -argument (`predicate'). +** 'read-buffer' and 'read-buffer-function' can now be called with a 4th +argument ('predicate'). +++ -** `completion-table-dynamic' by default stays in the minibuffer. +** 'completion-table-dynamic' by default stays in the minibuffer. The minibuffer will be the current buffer when the function is called. If you want the old behavior of calling the function in the buffer from which the minibuffer was entered, use the new argument -`switch-buffer' to `completion-table-dynamic'. +'switch-buffer' to 'completion-table-dynamic'. --- ** window-configurations no longer record the buffers' marks. @@ -1430,11 +1430,11 @@ active region handling. ** deactivate-mark is now buffer-local. +++ -** `cl-the' now asserts that its argument is of the given type. +** 'cl-the' now asserts that its argument is of the given type. +++ -** `process-running-child-p' may now return a numeric process -group ID instead of `t'. +** 'process-running-child-p' may now return a numeric process +group ID instead of 't'. +++ ** Mouse click events on mode line or header line no longer include @@ -1453,24 +1453,24 @@ denied" instead of "permission denied". The old behavior was problematic in languages like German where downcasing rules depend on grammar. +++ -** New variable ‘text-quoting-style’ to control how Emacs translates quotes. -Set it to ‘curve’ for curved single quotes ‘like this’, to ‘straight’ -for straight apostrophes 'like this', and to ‘grave’ for grave accent -and apostrophe `like this'. The default value nil acts like ‘curve’ -if curved single quotes are displayable, and like ‘grave’ otherwise. +** New variable 'text-quoting-style' to control how Emacs translates quotes. +Set it to 'curve' for curved single quotes ‘like this’, to 'straight' +for straight apostrophes 'like this', and to 'grave' for grave accent +and apostrophe `like this'. The default value nil acts like 'curve' +if curved single quotes are displayable, and like 'grave' otherwise. The new variable affects display of diagnostics and help, but not of info. +++ ** substitute-command-keys now replaces quotes. -That is, it converts documentation strings’ quoting style as per the -value of ‘text-quoting-style’. Doc strings in source code can use +That is, it converts documentation strings' quoting style as per the +value of 'text-quoting-style'. Doc strings in source code can use either curved single quotes or grave accents and apostrophes. As before, characters preceded by \= are output as-is. +++ -** Message-issuing functions ‘error’, ‘message’, etc. now convert quotes. -They use the new ‘format-message’ function instead of plain ‘format’, -so that they now follow user preference as per ‘text-quoting-style’ +** Message-issuing functions 'error', 'message', etc. now convert quotes. +They use the new 'format-message' function instead of plain 'format', +so that they now follow user preference as per 'text-quoting-style' when processing curved single quotes, grave accents, and apostrophes in their format argument. @@ -1478,7 +1478,7 @@ in their format argument. ** The character classes [:alpha:] and [:alnum:] in regular expressions now match multibyte characters using Unicode character properties. If you want the old behavior where they matched any character with -word syntax, use `\sw' instead. +word syntax, use '\sw' instead. +++ ** The character classes [:graph:] and [:print:] in regular expressions @@ -1489,105 +1489,105 @@ unassigned codepoints are now rejected. If you want the old behavior, use [:multibyte:] instead. +++ -** The `diff' command uses the unified format now. To restore the old -behavior, set `diff-switches' to `-c'. +** The 'diff' command uses the unified format now. To restore the old +behavior, set 'diff-switches' to '-c'. --- -** `grep-template' and `grep-find-template' values don't include the +** 'grep-template' and 'grep-find-template' values don't include the --color argument anymore. It's added at the place holder position dynamically. Any third-party code that changes these templates should be updated accordingly. +++ -** ‘(/ N)’ is now equivalent to ‘(/ 1 N)’ rather than to ‘(/ N 1)’. +** '(/ N)' is now equivalent to '(/ 1 N)' rather than to '(/ N 1)'. The new behavior is compatible with Common Lisp and with XEmacs. This change does not affect Lisp code intended to be portable to -Emacs 24.2 and earlier, which did not support unary ‘/’. +Emacs 24.2 and earlier, which did not support unary '/'. +++ -** The `default-directory' value doesn't have to end slash. To make -that happen, `unhandled-file-name-directory' now defaults to calling -`file-name-as-directory'. +** The 'default-directory' value doesn't have to end slash. To make +that happen, 'unhandled-file-name-directory' now defaults to calling +'file-name-as-directory'. * Lisp Changes in Emacs 25.1 ** pcase +++ -*** New UPatterns `quote', `app'. +*** New UPatterns 'quote', 'app'. +++ -*** New UPatterns can be defined with `pcase-defmacro'. +*** New UPatterns can be defined with 'pcase-defmacro'. +++ *** New vector QPattern. --- ** syntax-propertize is now automatically called on-demand during forward -parsing functions like `forward-sexp'. +parsing functions like 'forward-sexp'. +++ -** New hooks `prefix-command-echo-keystrokes-functions' and -`prefix-command-preserve-state-hook' allow the definition of prefix -commands other than the predefined `C-u'. +** New hooks 'prefix-command-echo-keystrokes-functions' and +'prefix-command-preserve-state-hook' allow the definition of prefix +commands other than the predefined 'C-u'. +++ -** New functions `filepos-to-bufferpos' and `bufferpos-to-filepos'. +** New functions 'filepos-to-bufferpos' and 'bufferpos-to-filepos'. These allow conversion between buffer positions and the corresponding file byte offsets, given the file's encoding. +++ -** The default value of `load-read-function' is now `read'. -Previously, the default value of `nil' implied using `read'. +** The default value of 'load-read-function' is now 'read'. +Previously, the default value of 'nil' implied using 'read'. +++ -** New hook `pre-redisplay-functions'. -It is a bit easier to use than `pre-redisplay-function'. +** New hook 'pre-redisplay-functions'. +It is a bit easier to use than 'pre-redisplay-function'. +++ -** The second arg of `looking-back' should always be provided explicitly. +** The second arg of 'looking-back' should always be provided explicitly. Previously, it was an optional argument, now it's mandatory. +++ -** Text properties `intangible', `point-entered', and `point-left' are obsolete. -Replaced by properties `cursor-intangible' and `cursor-sensor-functions', -implemented by the new `cursor-intangible-mode' and -`cursor-sensor-mode' minor modes. +** Text properties 'intangible', 'point-entered', and 'point-left' are obsolete. +Replaced by properties 'cursor-intangible' and 'cursor-sensor-functions', +implemented by the new 'cursor-intangible-mode' and +'cursor-sensor-mode' minor modes. +++ -** `inhibit-point-motion-hooks' now defaults to `t' and is obsolete. -Use the new minor modes `cursor-intangible-mode' and -`cursor-sensor-mode' instead. +** 'inhibit-point-motion-hooks' now defaults to 't' and is obsolete. +Use the new minor modes 'cursor-intangible-mode' and +'cursor-sensor-mode' instead. +++ -** New process type `pipe', which can be used in combination with the -`:stderr' keyword of make-process to handle standard error output +** New process type 'pipe', which can be used in combination with the +':stderr' keyword of make-process to handle standard error output of subprocess. +++ -** New function `make-process' provides an alternative interface to -`start-process'. It allows programs to set process parameters such as +** New function 'make-process' provides an alternative interface to +'start-process'. It allows programs to set process parameters such as process filter, sentinel, etc., through keyword arguments (similar to -`make-network-process'). +'make-network-process'). +++ -** A new function `directory-files-recursively' returns all matching +** A new function 'directory-files-recursively' returns all matching files (recursively) under a directory. +++ -** New variable `inhibit-message', when bound to non-nil, inhibits -`message' and related functions from displaying messages in the echo +** New variable 'inhibit-message', when bound to non-nil, inhibits +'message' and related functions from displaying messages in the echo area. The output is still logged to the *Messages* buffer. +++ -** A new text property `inhibit-read-only' can be used in read-only +** A new text property 'inhibit-read-only' can be used in read-only buffers to allow certain parts of the text to be writable. +++ -** A new variable `comment-end-can-be-escaped' is useful in languages +** A new variable 'comment-end-can-be-escaped' is useful in languages such as C and C++ where line comments with escaped newlines are continued to the next line. +++ -** New macro `define-advice'. +** New macro 'define-advice'. +++ ** Emacs Lisp now supports generators. @@ -1607,7 +1607,7 @@ evaluated (and should return a string) when the closure is built. ** define-inline provides a new way to define inlinable functions. +++ -** New function `macroexpand-1' to perform a single step of macro expansion. +** New function 'macroexpand-1' to perform a single step of macro expansion. +++ ** Some "x-*" functions were obsoleted and/or renamed: @@ -1619,18 +1619,18 @@ evaluated (and should return a string) when the closure is built. *** x-set-selection is renamed to gui-set-selection +++ -** New function `string-greaterp', which return the opposite result of -`string-lessp'. +** New function 'string-greaterp', which return the opposite result of +'string-lessp'. +++ -** The new functions `string-collate-lessp' and `string-collate-equalp' +** The new functions 'string-collate-lessp' and 'string-collate-equalp' preserve the collation order as defined by the system's locale(1) environment. For the time being this is implemented for modern POSIX systems and for MS-Windows, for other systems they fall back to their -counterparts `string-lessp' and `string-equal'. +counterparts 'string-lessp' and 'string-equal'. --- -*** The ls-lisp package uses `string-collate-lessp' to sort file names. +*** The ls-lisp package uses 'string-collate-lessp' to sort file names. The effect is that, on systems that use ls-lisp for Dired, the default sort order of the files in Dired is now different from what it was in previous versions of Emacs. In particular, the file names are sorted @@ -1638,10 +1638,10 @@ disregarding punctuation, accents, and diacritics, and letter case is ignored. For example, files whose name begin with a period will no longer appear near the beginning of the directory listing. If you want the old, locale-independent sorting, customize the new option -`ls-lisp-use-string-collate' to the nil value. +'ls-lisp-use-string-collate' to the nil value. +++ -*** The MS-Windows specific variable `w32-collate-ignore-punctuation', +*** The MS-Windows specific variable 'w32-collate-ignore-punctuation', if set to a non-nil value, causes the above 2 functions to ignore symbol and punctuation characters when collating strings. This emulates the behavior of modern Posix platforms when the locale's @@ -1649,94 +1649,94 @@ codeset is "UTF-8" (as in "en_US.UTF-8"). This is needed because MS-Windows doesn't support UTF-8 as codeset in its locales. +++ -** New function `alist-get', which is also a valid place (aka lvalue). +** New function 'alist-get', which is also a valid place (aka lvalue). +++ -** New function `funcall-interactively', which works like `funcall' -but makes `called-interactively-p' treat the function as (you guessed it) +** New function 'funcall-interactively', which works like 'funcall' +but makes 'called-interactively-p' treat the function as (you guessed it) called interactively. +++ -** New function `function-put' to use instead of `put' for function properties. +** New function 'function-put' to use instead of 'put' for function properties. +++ -** The new function `bidi-find-overridden-directionality' allows you to +** The new function 'bidi-find-overridden-directionality' allows you to find characters whose directionality was, perhaps maliciously, overridden by directional override control characters. Lisp programs can use this to detect potential phishing of URLs and other links that exploits bidirectional display reordering. +++ -** The new function `buffer-substring-with-bidi-context' allows you to +** The new function 'buffer-substring-with-bidi-context' allows you to copy a portion of a buffer into a different location while preserving the visual appearance both of the copied text and the text at destination, even when the copied text includes mixed bidirectional text and directional control characters. +++ -** New properties that can be specified with `declare': +** New properties that can be specified with 'declare': *** (interactive-only INSTEAD), says to use INSTEAD for non-interactive use. *** (pure VAL), if VAL is non-nil, indicates the function is pure. *** (side-effect-free VAL), if VAL is non-nil, indicates the function does not have side effects. +++ -** New macro `with-file-modes', for evaluating expressions with default file +** New macro 'with-file-modes', for evaluating expressions with default file permissions set to temporary values (e.g., for creating private files). +++ -** You can access the slots of structures using `cl-struct-slot-value'. +** You can access the slots of structures using 'cl-struct-slot-value'. +++ -** Function `sort' can deal with vectors. +** Function 'sort' can deal with vectors. --- -** Function `system-name' now returns an updated value if the current +** Function 'system-name' now returns an updated value if the current system's name has changed or if the Emacs process has changed systems, and to avoid long waits it no longer consults DNS to canonicalize the -name. The variable `system-name' is now obsolete. +name. The variable 'system-name' is now obsolete. +++ -** Function `write-region' no longer outputs "Wrote FILE" in batch mode. +** Function 'write-region' no longer outputs "Wrote FILE" in batch mode. --- -** If `pwd' is called with a prefix argument, insert the current default +** If 'pwd' is called with a prefix argument, insert the current default directory at point. +++ ** New functions return extended information about fonts and faces. +++ -*** The function `font-info' now returns more details about a font. +*** The function 'font-info' now returns more details about a font. In particular, it now returns the average width of the font's characters, which can be used for geometry-related calculations. +++ -*** A new function `default-font-width' returns the average width of a +*** A new function 'default-font-width' returns the average width of a character in the current buffer's default font. If the default face -is remapped (see `face-remapping-alist'), the value for the remapped +is remapped (see 'face-remapping-alist'), the value for the remapped face is returned. This function complements the existing function -`default-font-height'. +'default-font-height'. +++ -*** New functions `window-font-height' and `window-font-width' return +*** New functions 'window-font-height' and 'window-font-width' return the height and average width of characters in a specified face and -window. If FACE is remapped (see `face-remapping-alist'), the +window. If FACE is remapped (see 'face-remapping-alist'), the function returns the information for the remapped face. +++ -*** A new function `window-max-chars-per-line' returns the maximal +*** A new function 'window-max-chars-per-line' returns the maximal number of characters that can be displayed on one line. If a face and/or window are provided, these values are used for the -calculation. This function is different from `window-body-width' in +calculation. This function is different from 'window-body-width' in that it accounts for (i) continuation glyphs, (ii) the size of the font, and (iii) the specified window. --- ** New utilities in subr-x.el: -*** New macros `if-let' and `when-let' allow defining bindings and to +*** New macros 'if-let' and 'when-let' allow defining bindings and to execute code depending whether all values are true. -*** New macros `thread-first' and `thread-last' allow threading a form +*** New macros 'thread-first' and 'thread-last' allow threading a form as the first or last argument of subsequent forms. +++ @@ -1745,15 +1745,14 @@ font, and (iii) the specified window. apostrophe `like-this'. The new style looks better on today's displays. In the new Electric Quote mode, you can enter curved single quotes into documentation by typing ` and '. Outside Electric Quote mode, -you can enter them by typing ‘C-x 8 [’ and ‘C-x 8 ]’, or (if your Alt -key works) by typing ‘A-[’ and ‘A-]’. As described above under -‘text-quoting-style’, the user can specify how to display doc string -quotes. +you can enter them by typing 'C-x 8 [' and 'C-x 8 ]', or (if your Alt +key works) by typing 'A-[' and 'A-]'. As described above under +'text-quoting-style', the user can specify how to display doc string +++ -** New function ‘format-message’ is like ‘format’ and also converts +** New function 'format-message' is like 'format' and also converts curved single quotes, grave accents and apostrophes as per -‘text-quoting-style’. +'text-quoting-style'. +++ ** show-help-function's arg is converted via substitute-command-keys @@ -1766,36 +1765,36 @@ quotation marks. *** Time conversion functions now accept an optional ZONE argument that specifies the time zone rules for conversion. ZONE is omitted or -nil for Emacs local time, t for Universal Time, ‘wall’ for system wall -clock time, or a string as in ‘set-time-zone-rule’ for a time zone -rule. The affected functions are ‘current-time-string’, -‘current-time-zone’, ‘decode-time’, and ‘format-time-string’. The -function ‘encode-time’, which already accepted a simple time zone rule +nil for Emacs local time, t for Universal Time, 'wall' for system wall +clock time, or a string as in 'set-time-zone-rule' for a time zone +rule. The affected functions are 'current-time-string', +'current-time-zone', 'decode-time', and 'format-time-string'. The +function 'encode-time', which already accepted a simple time zone rule argument, has been extended to accept all the new forms. *** Time-related functions now consistently accept numbers (representing seconds since the epoch) and nil (representing the current time) as well as the usual list-of-integer representation. -Affected functions include `current-time-string', `current-time-zone', -`decode-time', `float-time', `format-time-string', `seconds-to-time', -`time-add', `time-less-p', `time-subtract', `time-to-day-in-year', -`time-to-days', and `time-to-seconds'. +Affected functions include 'current-time-string', 'current-time-zone', +'decode-time', 'float-time', 'format-time-string', 'seconds-to-time', +'time-add', 'time-less-p', 'time-subtract', 'time-to-day-in-year', +'time-to-days', and 'time-to-seconds'. -*** The `encode-time-value' and `with-decoded-time-value' macros have +*** The 'encode-time-value' and 'with-decoded-time-value' macros have been obsoleted. -*** `calendar-next-time-zone-transition', `time-add', and -`time-subtract' no longer return time values in the obsolete and +*** 'calendar-next-time-zone-transition', 'time-add', and +'time-subtract' no longer return time values in the obsolete and undocumented integer-pair format. Instead, they return a list of two integers. +++ -** New function `set-binary-mode' allows switching a standard stream +** New function 'set-binary-mode' allows switching a standard stream of the Emacs process to binary I/O mode. +++ -** The new function `directory-name-p' can be used to check whether a file -name (as returned from, for instance, `file-name-all-completions') is +** The new function 'directory-name-p' can be used to check whether a file +name (as returned from, for instance, 'file-name-all-completions') is a directory file name. It returns non-nil if the last character in the name is a directory separator character (forward slash on GNU and Unix systems, forward- or backslash on MS-Windows and MS-DOS). @@ -1807,22 +1806,22 @@ if the terminal cannot display curved quotes. +++ ** Standard output and error streams now transliterate characters via standard-display-table, and encode output using locale-coding-system. -To force a specific encoding, bind `coding-system-for-write' to the -coding-system of your choice when invoking functions like `prin1' and -`message'. +To force a specific encoding, bind 'coding-system-for-write' to the +coding-system of your choice when invoking functions like 'prin1' and +'message'. +++ -** New var `truncate-string-ellipsis' to choose how to indicate truncation. +** New var 'truncate-string-ellipsis' to choose how to indicate truncation. +++ -** New possible value for `system-type': `nacl'. +** New possible value for 'system-type': 'nacl'. This is used by Google's Native Client (NaCl). ** Miscellaneous name change --- For consistency with the usual Emacs spelling, the Lisp variable -`hfy-optimisations' has been renamed to `hfy-optimizations'. +'hfy-optimisations' has been renamed to 'hfy-optimizations'. The old name should still work, as an obsolescent alias. ** Changes in Frame- and Window- Handling @@ -1832,53 +1831,53 @@ The old name should still work, as an obsolescent alias. provide toolkit scroll bars, namely Gtk+, Lucid, Motif and Windows. Horizontal scroll bars are turned off by default. -**** New function `horizontal-scroll-bars-available-p' telling whether +**** New function 'horizontal-scroll-bars-available-p' telling whether horizontal scroll bars are available on the underlying system. -**** New mode `horizontal-scroll-bar-mode' to toggle horizontal scroll +**** New mode 'horizontal-scroll-bar-mode' to toggle horizontal scroll bars on all existing and future frames. -**** New function `toggle-horizontal-scroll-bar' to toggle horizontal +**** New function 'toggle-horizontal-scroll-bar' to toggle horizontal scroll bars on the selected frame. -**** New frame parameters `horizontal-scroll-bars' and - `scroll-bar-height' to set horizontal scroll bars and their height - for individual frames and in `default-frame-alist'. +**** New frame parameters 'horizontal-scroll-bars' and + 'scroll-bar-height' to set horizontal scroll bars and their height + for individual frames and in 'default-frame-alist'. -**** New functions `frame-scroll-bar-height' and - `window-scroll-bar-height' return the height of horizontal scroll +**** New functions 'frame-scroll-bar-height' and + 'window-scroll-bar-height' return the height of horizontal scroll bars on a specific frame or window. -**** `set-window-scroll-bars' now accepts five parameters where the last +**** 'set-window-scroll-bars' now accepts five parameters where the last two specify height and type of the window's horizontal scroll bar. -**** `window-scroll-bars' now returns type and sizes of horizontal scroll +**** 'window-scroll-bars' now returns type and sizes of horizontal scroll bars too. -**** New buffer-local variables `horizontal-scroll-bar' and - `scroll-bar-height'. +**** New buffer-local variables 'horizontal-scroll-bar' and + 'scroll-bar-height'. +++ -*** New functions `frame-geometry' and `frame-edges' give access to a +*** New functions 'frame-geometry' and 'frame-edges' give access to a frame's geometry. +++ -*** New functions `mouse-absolute-pixel-position' and -`set-mouse-absolute-pixel-position' get/set screen coordinates of the +*** New functions 'mouse-absolute-pixel-position' and +'set-mouse-absolute-pixel-position' get/set screen coordinates of the mouse cursor. +++ -*** The function `window-edges' now accepts three additional arguments to +*** The function 'window-edges' now accepts three additional arguments to retrieve body, absolute and pixel edges of the window. +++ -*** The functions `window-inside-edges', `window-inside-pixel-edges' and -`window-inside-absolute-pixel-edges' have been renamed to respectively -`window-body-edges', `window-body-pixel-edges' and -`window-absolute-body-pixel-edges'. The old names are kept as aliases. +*** The functions 'window-inside-edges', 'window-inside-pixel-edges' and +'window-inside-absolute-pixel-edges' have been renamed to respectively +'window-body-edges', 'window-body-pixel-edges' and +'window-absolute-body-pixel-edges'. The old names are kept as aliases. +++ -*** New function `window-absolute-pixel-position' to get the screen +*** New function 'window-absolute-pixel-position' to get the screen coordinates of a visible buffer position. +++ @@ -1895,26 +1894,26 @@ they display when setting default font, menu bar, fringe width, or scroll bars. In particular, maximized and fullscreen frames are conceptually never resized if such settings change. For fullheight and fullwidth frames, the behavior may depend on the toolkit used. -**** New option `frame-inhibit-implied-resize' if non-nil, means that +**** New option 'frame-inhibit-implied-resize' if non-nil, means that setting default font, menu bar, fringe width, or scroll bars of a specific frame does not resize that frame in order to preserve the number of columns or lines it displays. +++ -*** New function `window-preserve-size' allows you to preserve the size of -a window without "fixing" it. It's supported by `fit-window-to-buffer', -`temp-buffer-resize-mode' and `display-buffer'. +*** New function 'window-preserve-size' allows you to preserve the size of +a window without "fixing" it. It's supported by 'fit-window-to-buffer', +'temp-buffer-resize-mode' and 'display-buffer'. +++ -*** New `display-buffer' action function `display-buffer-use-some-frame'. +*** New 'display-buffer' action function 'display-buffer-use-some-frame'. This displays the buffer in an existing frame other than the current frame, and allows the caller to specify a frame predicate to exclude frames. +++ -*** New minor mode `window-divider-mode' and options -`window-divider-default-places', `window-divider-default-bottom-width' -and `window-divider-default-right-width'. +*** New minor mode 'window-divider-mode' and options +'window-divider-default-places', 'window-divider-default-bottom-width' +and 'window-divider-default-right-width'. --- ** Tearoff menus and detachable toolbars for Gtk+ have been removed. @@ -1925,17 +1924,17 @@ Those features have been deprecated in Gtk+ for a long time. +++ *** etags no longer qualifies class members by default. -By default, `etags' will not qualify class members for Perl and C-like +By default, 'etags' will not qualify class members for Perl and C-like object-oriented languages with their class names and namespaces, and will remove qualifications used explicitly in the code from the tag names it puts in TAGS files. This is so the etags.el back-end for -`xref-find-definitions' is more accurate and produces less false +'xref-find-definitions' is more accurate and produces less false positives. Use --class-qualify (-Q) if you want the old default behavior of qualifying class members in C++, Java, Objective C, and Perl. Note -that using -Q might make some class members become "unknown" to `M-.' -(`xref-find-definitions'); if so, you can use `C-u M-.' to specify the +that using -Q might make some class members become "unknown" to 'M-.' +('xref-find-definitions'); if so, you can use 'C-u M-.' to specify the qualified names by hand. +++ @@ -1962,7 +1961,7 @@ whitespace at line beginning. This includes the makefile.w32-in files in various subdirectories, and the support files. The file nt/configure.bat now just tells the user to use the procedure described in nt/INSTALL, by running the Posix -`configure' script in the top-level directory. +'configure' script in the top-level directory. --- ** Building Emacs for MS-Windows requires at least Windows XP @@ -1987,7 +1986,7 @@ Pass '--without-ns' to configure to create an X11 build, the old default. ** OS X on PowerPC is no longer supported. --- -** New variable `ns-use-fullscreen-animation' controls animation for +** New variable 'ns-use-fullscreen-animation' controls animation for non-native NS fullscreen. The default is nil. Set to t to enable animation when entering and leaving fullscreen. For native OSX fullscreen this has no effect. @@ -1996,7 +1995,7 @@ this has no effect. ** The new function 'w32-application-type' returns the type of an MS-Windows application given the name of its executable program file. -** New variable `w32-pipe-buffer-size'. +** New variable 'w32-pipe-buffer-size'. It can be used to tune the size of the buffer of pipes created for communicating with subprocesses, when the program run by a subprocess exhibits unusual buffering behavior. Default is zero, which lets the diff --git a/nextstep/README b/nextstep/README index 026a048..fe87802 100644 --- a/nextstep/README +++ b/nextstep/README @@ -1,4 +1,3 @@ - NS -- the Cocoa interface for OS X and compatible systems --------------------------------------------------------- @@ -30,7 +29,7 @@ fact that it doesn't have a normal name. Instead, the method name is made up of the name of each parameter. An exception to this rule are methods without parameters. -The following calls a method in the object `anObject'. +The following calls a method in the object 'anObject'. [anObject alpha:1 beta:2 gamma:3]; @@ -57,7 +56,7 @@ Classes are declared like the following: and avoid language constructs that makes the code hard to maintain. * Don't use macros and types intended for the XCode Interface Builder, - like `IBAction'. + like 'IBAction'. * The NS interface should work on all version of OS X from 10.6.8 (Snow Leopard) to the latest official release. @@ -71,8 +70,8 @@ Classes are declared like the following: The NS interface features a printf-based trace package that prints the call tree of selected functions in the Cocoa interface, plus various extra information. It can be enabled by uncommenting the line -defining `NSTRACE_ENABLED' in "nsterm.h". To enable more output, -uncomment the lines defining symbols starting with `NSTRACE_GROUP'. +defining 'NSTRACE_ENABLED' in "nsterm.h". To enable more output, +uncomment the lines defining symbols starting with 'NSTRACE_GROUP'. GNUSTEP AND OTHER COMPATIBLE SYSTEMS commit 80ec484ac83e6965a843dabf766ade057ee1bc6a Author: Dmitry Gutov Date: Mon Mar 14 04:14:05 2016 +0200 Make lisp-completion-at-point's argument optional * lisp/progmodes/elisp-mode.el (lisp-completion-at-point): Make the argument optional, like it was before the rename. diff --git a/lisp/progmodes/elisp-mode.el b/lisp/progmodes/elisp-mode.el index 9e175a2..fc4501d 100644 --- a/lisp/progmodes/elisp-mode.el +++ b/lisp/progmodes/elisp-mode.el @@ -575,7 +575,7 @@ It can be quoted, or be inside a quoted form." " " (cadr table-etc))) (cddr table-etc))))))))) -(defun lisp-completion-at-point (_predicate) +(defun lisp-completion-at-point (&optional _predicate) (declare (obsolete elisp-completion-at-point "25.1")) (elisp-completion-at-point)) commit 9d463aec8b3d848556bbe320c0cf8bd310528168 Author: Dmitry Gutov Date: Mon Mar 14 00:34:01 2016 +0200 Tweak the left precedence of '=>' * lisp/progmodes/ruby-mode.el (ruby-smie-grammar): Tweak the left precedence of '=>', to improve indentation and sexp navigation. diff --git a/lisp/progmodes/ruby-mode.el b/lisp/progmodes/ruby-mode.el index 9884b7e..1c9f0f4 100644 --- a/lisp/progmodes/ruby-mode.el +++ b/lisp/progmodes/ruby-mode.el @@ -388,7 +388,7 @@ It is used when `ruby-encoding-magic-comment-style' is set to `custom'." (cases (exp "then" insts) (cases "when" cases) (insts "else" insts)) (expseq (exp) );;(expseq "," expseq) - (hashvals (id "=>" exp1) (hashvals "," hashvals)) + (hashvals (exp1 "=>" exp1) (hashvals "," hashvals)) (insts-rescue-insts (insts) (insts-rescue-insts "rescue" insts-rescue-insts) (insts-rescue-insts "ensure" insts-rescue-insts)) diff --git a/test/indent/ruby.rb b/test/indent/ruby.rb index 941fffb..6ab814a 100644 --- a/test/indent/ruby.rb +++ b/test/indent/ruby.rb @@ -415,6 +415,12 @@ def qux foo(:bar => tee) +regions = foo( + OpenStruct.new(id: 0, name: "foo") => [ + 10 + ] +) + {'a' => { 'b' => 'c', 'd' => %w(e f) commit 5b705bc97d3928e6550d271c415c54e00e020011 Author: Dmitry Gutov Date: Mon Mar 14 00:15:06 2016 +0200 Indent '.' relative to the first sibling expression * lisp/progmodes/ruby-mode.el (ruby-smie-rules): Indent '.' relative to the first sibling expression, instead of the parent token (bug#17213). diff --git a/lisp/progmodes/ruby-mode.el b/lisp/progmodes/ruby-mode.el index b0b837a..9884b7e 100644 --- a/lisp/progmodes/ruby-mode.el +++ b/lisp/progmodes/ruby-mode.el @@ -661,7 +661,9 @@ It is used when `ruby-encoding-magic-comment-style' is set to `custom'." (`(:before . ".") (if (smie-rule-sibling-p) (and ruby-align-chained-calls 0) - ruby-indent-level)) + (smie-backward-sexp ".") + (cons 'column (+ (current-column) + ruby-indent-level)))) (`(:before . ,(or `"else" `"then" `"elsif" `"rescue" `"ensure")) (smie-rule-parent)) (`(:before . "when") diff --git a/test/indent/ruby.rb b/test/indent/ruby.rb index 51923f7..941fffb 100644 --- a/test/indent/ruby.rb +++ b/test/indent/ruby.rb @@ -317,6 +317,11 @@ def bar .baz end +abc(foo + .bar, + tee + .qux) + # http://stackoverflow.com/questions/17786563/emacs-ruby-mode-if-expressions-indentation tee = if foo bar commit 04f5525fbb961f6006280be340ca0f03df9e80a7 Author: Dmitry Gutov Date: Sun Mar 13 23:10:38 2016 +0200 Make '.' associative, for easier sexp navigation * lisp/progmodes/ruby-mode.el (ruby-smie-grammar): Make '.' associative, for easier sexp navigation. diff --git a/lisp/progmodes/ruby-mode.el b/lisp/progmodes/ruby-mode.el index 36c1aed..b0b837a 100644 --- a/lisp/progmodes/ruby-mode.el +++ b/lisp/progmodes/ruby-mode.el @@ -368,7 +368,7 @@ It is used when `ruby-encoding-magic-comment-style' is set to `custom'." (exp (exp1) (exp "," exp) (exp "=" exp) (id " @ " exp)) (exp1 (exp2) (exp2 "?" exp1 ":" exp1)) - (exp2 (exp3) (exp3 "." exp2)) + (exp2 (exp3) (exp3 "." exp3)) (exp3 ("def" insts "end") ("begin" insts-rescue-insts "end") ("do" insts "end") @@ -416,7 +416,7 @@ It is used when `ruby-encoding-magic-comment-style' is set to `custom'." (nonassoc "==" "===" "!=") (nonassoc "=~" "!~") (left "<<" ">>") - (right ".")))))) + (assoc ".")))))) (defun ruby-smie--bosp () (save-excursion (skip-chars-backward " \t") commit ba24c99ec665501fb05cabd77c4115fa1fa9c305 Author: Phillip Lord Date: Sun Mar 13 18:33:10 2016 +0000 Revert "Simplify "Visit New File" to "New File"" This reverts commit d457fd9dc782465e1547f74021390c9d5951d6af. diff --git a/doc/emacs/files.texi b/doc/emacs/files.texi index c482b90..ab20d4a 100644 --- a/doc/emacs/files.texi +++ b/doc/emacs/files.texi @@ -288,7 +288,7 @@ see @ref{Drag and Drop}, and @ref{Misc Dired Features}. On text-mode terminals and on graphical displays when Emacs was built without a GUI toolkit, you can visit files via the menu-bar -@samp{File} menu, which has a @samp{New File} item. +@samp{File} menu, which has a @samp{Visit New File} item. Each time you visit a file, Emacs automatically scans its contents to detect what character encoding and end-of-line convention it uses, diff --git a/lisp/menu-bar.el b/lisp/menu-bar.el index 0557214..6281d7e 100644 --- a/lisp/menu-bar.el +++ b/lisp/menu-bar.el @@ -192,7 +192,7 @@ :enable (menu-bar-non-minibuffer-window-p) :help "Read an existing file into an Emacs buffer")) (bindings--define-key menu [new-file] - '(menu-item "New File..." find-file + '(menu-item "Visit New File..." find-file :enable (menu-bar-non-minibuffer-window-p) :help "Specify a new file's name, to edit the file")) diff --git a/lisp/startup.el b/lisp/startup.el index a411891..15a79f6 100644 --- a/lisp/startup.el +++ b/lisp/startup.el @@ -1998,7 +1998,7 @@ To quit a partially entered command, type Control-g.\n") (insert " How to order printed manuals from the FSF\n") (insert "\nUseful tasks:\n") - (insert-button "New File" + (insert-button "Visit New File" 'action (lambda (_button) (call-interactively 'find-file)) 'follow-link t) (insert (substitute-command-keys @@ -2075,7 +2075,7 @@ If you have no Meta key, you may instead type ESC followed by the character.)")) ;; Insert links to useful tasks (insert "\nUseful tasks:\n") - (insert-button "New File" + (insert-button "Visit New File" 'action (lambda (_button) (call-interactively 'find-file)) 'follow-link t) (insert "\t\t\t") commit d457fd9dc782465e1547f74021390c9d5951d6af Author: Phillip Lord Date: Sat Mar 12 22:26:20 2016 +0000 Simplify "Visit New File" to "New File" * doc/emacs/files.texi,lisp/menu-bar.el (menu-bar-file-menu), lisp/startup.el(normal-mouse-start-screen, normal-no-mouse-startup-screen): Change label "Visit New File" to "New File". diff --git a/doc/emacs/files.texi b/doc/emacs/files.texi index ab20d4a..c482b90 100644 --- a/doc/emacs/files.texi +++ b/doc/emacs/files.texi @@ -288,7 +288,7 @@ see @ref{Drag and Drop}, and @ref{Misc Dired Features}. On text-mode terminals and on graphical displays when Emacs was built without a GUI toolkit, you can visit files via the menu-bar -@samp{File} menu, which has a @samp{Visit New File} item. +@samp{File} menu, which has a @samp{New File} item. Each time you visit a file, Emacs automatically scans its contents to detect what character encoding and end-of-line convention it uses, diff --git a/lisp/menu-bar.el b/lisp/menu-bar.el index 6281d7e..0557214 100644 --- a/lisp/menu-bar.el +++ b/lisp/menu-bar.el @@ -192,7 +192,7 @@ :enable (menu-bar-non-minibuffer-window-p) :help "Read an existing file into an Emacs buffer")) (bindings--define-key menu [new-file] - '(menu-item "Visit New File..." find-file + '(menu-item "New File..." find-file :enable (menu-bar-non-minibuffer-window-p) :help "Specify a new file's name, to edit the file")) diff --git a/lisp/startup.el b/lisp/startup.el index 15a79f6..a411891 100644 --- a/lisp/startup.el +++ b/lisp/startup.el @@ -1998,7 +1998,7 @@ To quit a partially entered command, type Control-g.\n") (insert " How to order printed manuals from the FSF\n") (insert "\nUseful tasks:\n") - (insert-button "Visit New File" + (insert-button "New File" 'action (lambda (_button) (call-interactively 'find-file)) 'follow-link t) (insert (substitute-command-keys @@ -2075,7 +2075,7 @@ If you have no Meta key, you may instead type ESC followed by the character.)")) ;; Insert links to useful tasks (insert "\nUseful tasks:\n") - (insert-button "Visit New File" + (insert-button "New File" 'action (lambda (_button) (call-interactively 'find-file)) 'follow-link t) (insert "\t\t\t") commit 983448dfa062e3e8512e79edf08dcf16ad56b8bd Author: Eli Zaretskii Date: Sat Mar 12 18:07:34 2016 +0200 Update Unicode notes for importing a new Unicode version * admin/notes/unicode: Mention the need to update otf-script-alist in fontset.el when importing data files from a new Unicode version. diff --git a/admin/notes/unicode b/admin/notes/unicode index 0b2ce90..b30bf50 100644 --- a/admin/notes/unicode +++ b/admin/notes/unicode @@ -36,8 +36,12 @@ updates in charscript.el, but it is a good idea to look at the results and see if any changes in admin/unidata/blocks.awk are required. Any new scripts added by UnicodeData.txt will also need updates to -script-representative-chars defined in fontset.el. Other databases in -fontset.el might also need to be updated as needed. +script-representative-chars defined in fontset.el, and also the list +of OTF script tags in otf-script-alist, whose source is on this page: + + https://www.microsoft.com/typography/otspec/scripttags.htm + +Other databases in fontset.el might also need to be updated as needed. The function 'ucs-names', defined in lisp/international/mule-cmds.el, might need to be updated because it knows about used and unused ranges commit a761fbf262b6898036a537a36476da7767c0daca Author: Eli Zaretskii Date: Sat Mar 12 17:51:45 2016 +0200 Import new data files from Unicode 9.0.0beta * admin/unidata/UnicodeData.txt: * admin/unidata/Blocks.txt: * admin/unidata/BidiMirroring.txt: * admin/unidata/BidiBrackets.txt: Update from Unicode 9.0.0beta. * admin/unidata/unidata-gen.el (unidata-gen-files): Bind 'coding-system-for-read' to 'utf-8, as various Unicode data files now actually use non-ASCII characters. (unidata-setup-list, unidata-get-name): Support the new Tangut Ideographs block. * lisp/international/characters.el (standard-case-table): Add new characters from Unicode 9.0.0. (standard-category-table): Add Arabic block u+08A0..u+08FF. Add Cyrillic Extended-C block. (char-width-table): Update ranges per Unicode 9.0.0. * lisp/international/fontset.el (script-representative-chars): Add new scripts defined by Unicode 9.0.0. (otf-script-alist): Add new OTF script tags. * lisp/international/mule-cmds.el (ucs-names): Update ranges per Unicode 9.0.0 additions. diff --git a/admin/unidata/BidiBrackets.txt b/admin/unidata/BidiBrackets.txt index bfd83cd..a3a4941 100644 --- a/admin/unidata/BidiBrackets.txt +++ b/admin/unidata/BidiBrackets.txt @@ -1,14 +1,16 @@ -# BidiBrackets-8.0.0.txt -# Date: 2015-01-20, 19:00:00 GMT [AG, LI, KW] +# BidiBrackets-9.0.0.txt +# Date: 2016-01-21, 22:00:00 GMT [AG, LI, KW] +# © 2016 Unicode®, Inc. +# For terms of use, see http://www.unicode.org/terms_of_use.html +# +# Unicode Character Database +# For documentation, see http://www.unicode.org/reports/tr44/ # # Bidi_Paired_Bracket and Bidi_Paired_Bracket_Type Properties # # This file is a normative contributory data file in the Unicode # Character Database. # -# Copyright (c) 1991-2015 Unicode, Inc. -# For terms of use, see http://www.unicode.org/terms_of_use.html -# # Bidi_Paired_Bracket is a normative property of type Miscellaneous, # which establishes a mapping between characters that are treated as # bracket pairs by the Unicode Bidirectional Algorithm. diff --git a/admin/unidata/BidiMirroring.txt b/admin/unidata/BidiMirroring.txt index fbc60f1..68142c5 100644 --- a/admin/unidata/BidiMirroring.txt +++ b/admin/unidata/BidiMirroring.txt @@ -1,19 +1,21 @@ -# BidiMirroring-8.0.0.txt -# Date: 2015-01-20, 18:30:00 GMT [KW, LI] +# BidiMirroring-9.0.0.txt +# Date: 2016-01-21, 22:00:00 GMT [KW, LI] +# © 2016 Unicode®, Inc. +# For terms of use, see http://www.unicode.org/terms_of_use.html +# +# Unicode Character Database +# For documentation, see http://www.unicode.org/reports/tr44/ # # Bidi_Mirroring_Glyph Property # # This file is an informative contributory data file in the # Unicode Character Database. # -# Copyright (c) 1991-2015 Unicode, Inc. -# For terms of use, see http://www.unicode.org/terms_of_use.html -# # This data file lists characters that have the Bidi_Mirrored=Yes property # value, for which there is another Unicode character that typically has a glyph # that is the mirror image of the original character's glyph. # -# The repertoire covered by the file is Unicode 8.0.0. +# The repertoire covered by the file is Unicode 9.0.0. # # The file contains a list of lines with mappings from one code point # to another one for character-based mirroring. diff --git a/admin/unidata/Blocks.txt b/admin/unidata/Blocks.txt index 0a4a580..74c41e5 100644 --- a/admin/unidata/Blocks.txt +++ b/admin/unidata/Blocks.txt @@ -1,9 +1,9 @@ -# Blocks-8.0.0.txt -# Date: 2014-11-10, 23:04:00 GMT [KW] +# Blocks-9.0.0.txt +# Date: 2016-02-05, 23:48:00 GMT [KW] +# © 2016 Unicode®, Inc. +# For terms of use, see http://www.unicode.org/terms_of_use.html # # Unicode Character Database -# Copyright (c) 1991-2014 Unicode, Inc. -# For terms of use, see http://www.unicode.org/terms_of_use.html # For documentation, see http://www.unicode.org/reports/tr44/ # # Format: @@ -93,6 +93,7 @@ 1BC0..1BFF; Batak 1C00..1C4F; Lepcha 1C50..1C7F; Ol Chiki +1C80..1C8F; Cyrillic Extended-C 1CC0..1CCF; Sundanese Supplement 1CD0..1CFF; Vedic Extensions 1D00..1D7F; Phonetic Extensions @@ -209,6 +210,7 @@ FFF0..FFFF; Specials 10400..1044F; Deseret 10450..1047F; Shavian 10480..104AF; Osmanya +104B0..104FF; Osage 10500..1052F; Elbasan 10530..1056F; Caucasian Albanian 10600..1077F; Linear A @@ -243,13 +245,17 @@ FFF0..FFFF; Specials 11280..112AF; Multani 112B0..112FF; Khudawadi 11300..1137F; Grantha +11400..1147F; Newa 11480..114DF; Tirhuta 11580..115FF; Siddham 11600..1165F; Modi +11660..1167F; Mongolian Supplement 11680..116CF; Takri 11700..1173F; Ahom 118A0..118FF; Warang Citi 11AC0..11AFF; Pau Cin Hau +11C00..11C6F; Bhaiksuki +11C70..11CBF; Marchen 12000..123FF; Cuneiform 12400..1247F; Cuneiform Numbers and Punctuation 12480..1254F; Early Dynastic Cuneiform @@ -260,6 +266,9 @@ FFF0..FFFF; Specials 16AD0..16AFF; Bassa Vah 16B00..16B8F; Pahawh Hmong 16F00..16F9F; Miao +16FE0..16FFF; Ideographic Symbols and Punctuation +17000..187FF; Tangut +18800..18AFF; Tangut Components 1B000..1B0FF; Kana Supplement 1BC00..1BC9F; Duployan 1BCA0..1BCAF; Shorthand Format Controls @@ -270,7 +279,9 @@ FFF0..FFFF; Specials 1D360..1D37F; Counting Rod Numerals 1D400..1D7FF; Mathematical Alphanumeric Symbols 1D800..1DAAF; Sutton SignWriting +1E000..1E02F; Glagolitic Supplement 1E800..1E8DF; Mende Kikakui +1E900..1E95F; Adlam 1EE00..1EEFF; Arabic Mathematical Alphabetic Symbols 1F000..1F02F; Mahjong Tiles 1F030..1F09F; Domino Tiles diff --git a/admin/unidata/UnicodeData.txt b/admin/unidata/UnicodeData.txt index aa0e914..caf087b 100644 --- a/admin/unidata/UnicodeData.txt +++ b/admin/unidata/UnicodeData.txt @@ -616,7 +616,7 @@ 0267;LATIN SMALL LETTER HENG WITH HOOK;Ll;0;L;;;;;N;LATIN SMALL LETTER HENG HOOK;;;; 0268;LATIN SMALL LETTER I WITH STROKE;Ll;0;L;;;;;N;LATIN SMALL LETTER BARRED I;;0197;;0197 0269;LATIN SMALL LETTER IOTA;Ll;0;L;;;;;N;;;0196;;0196 -026A;LATIN LETTER SMALL CAPITAL I;Ll;0;L;;;;;N;;;;; +026A;LATIN LETTER SMALL CAPITAL I;Ll;0;L;;;;;N;;;A7AE;;A7AE 026B;LATIN SMALL LETTER L WITH MIDDLE TILDE;Ll;0;L;;;;;N;;;2C62;;2C62 026C;LATIN SMALL LETTER L WITH BELT;Ll;0;L;;;;;N;LATIN SMALL LETTER L BELT;;A7AD;;A7AD 026D;LATIN SMALL LETTER L WITH RETROFLEX HOOK;Ll;0;L;;;;;N;LATIN SMALL LETTER L RETROFLEX HOOK;;;; @@ -2093,6 +2093,29 @@ 08B2;ARABIC LETTER ZAIN WITH INVERTED V ABOVE;Lo;0;AL;;;;;N;;;;; 08B3;ARABIC LETTER AIN WITH THREE DOTS BELOW;Lo;0;AL;;;;;N;;;;; 08B4;ARABIC LETTER KAF WITH DOT BELOW;Lo;0;AL;;;;;N;;;;; +08B6;ARABIC LETTER BEH WITH SMALL MEEM ABOVE;Lo;0;AL;;;;;N;;;;; +08B7;ARABIC LETTER PEH WITH SMALL MEEM ABOVE;Lo;0;AL;;;;;N;;;;; +08B8;ARABIC LETTER TEH WITH SMALL TEH ABOVE;Lo;0;AL;;;;;N;;;;; +08B9;ARABIC LETTER REH WITH SMALL NOON ABOVE;Lo;0;AL;;;;;N;;;;; +08BA;ARABIC LETTER YEH WITH TWO DOTS BELOW AND SMALL NOON ABOVE;Lo;0;AL;;;;;N;;;;; +08BB;ARABIC LETTER AFRICAN FEH;Lo;0;AL;;;;;N;;;;; +08BC;ARABIC LETTER AFRICAN QAF;Lo;0;AL;;;;;N;;;;; +08BD;ARABIC LETTER AFRICAN NOON;Lo;0;AL;;;;;N;;;;; +08D4;ARABIC SMALL HIGH WORD AR-RUB;Mn;230;NSM;;;;;N;;;;; +08D5;ARABIC SMALL HIGH SAD;Mn;230;NSM;;;;;N;;;;; +08D6;ARABIC SMALL HIGH AIN;Mn;230;NSM;;;;;N;;;;; +08D7;ARABIC SMALL HIGH QAF;Mn;230;NSM;;;;;N;;;;; +08D8;ARABIC SMALL HIGH NOON WITH KASRA;Mn;230;NSM;;;;;N;;;;; +08D9;ARABIC SMALL LOW NOON WITH KASRA;Mn;230;NSM;;;;;N;;;;; +08DA;ARABIC SMALL HIGH WORD ATH-THALATHA;Mn;230;NSM;;;;;N;;;;; +08DB;ARABIC SMALL HIGH WORD AS-SAJDA;Mn;230;NSM;;;;;N;;;;; +08DC;ARABIC SMALL HIGH WORD AN-NISF;Mn;230;NSM;;;;;N;;;;; +08DD;ARABIC SMALL HIGH WORD SAKTA;Mn;230;NSM;;;;;N;;;;; +08DE;ARABIC SMALL HIGH WORD QIF;Mn;230;NSM;;;;;N;;;;; +08DF;ARABIC SMALL HIGH WORD WAQFA;Mn;230;NSM;;;;;N;;;;; +08E0;ARABIC SMALL HIGH FOOTNOTE MARKER;Mn;230;NSM;;;;;N;;;;; +08E1;ARABIC SMALL HIGH SIGN SAFHA;Mn;230;NSM;;;;;N;;;;; +08E2;ARABIC DISPUTED END OF AYAH;Cf;0;AN;;;;;N;;;;; 08E3;ARABIC TURNED DAMMA BELOW;Mn;220;NSM;;;;;N;;;;; 08E4;ARABIC CURLY FATHA;Mn;230;NSM;;;;;N;;;;; 08E5;ARABIC CURLY DAMMA;Mn;230;NSM;;;;;N;;;;; @@ -2765,6 +2788,7 @@ 0C7D;TELUGU FRACTION DIGIT TWO FOR EVEN POWERS OF FOUR;No;0;ON;;;;2;N;;;;; 0C7E;TELUGU FRACTION DIGIT THREE FOR EVEN POWERS OF FOUR;No;0;ON;;;;3;N;;;;; 0C7F;TELUGU SIGN TUUMU;So;0;L;;;;;N;;;;; +0C80;KANNADA SIGN SPACING CANDRABINDU;Lo;0;L;;;;;N;;;;; 0C81;KANNADA SIGN CANDRABINDU;Mn;0;NSM;;;;;N;;;;; 0C82;KANNADA SIGN ANUSVARA;Mc;0;L;;;;;N;;;;; 0C83;KANNADA SIGN VISARGA;Mc;0;L;;;;;N;;;;; @@ -2923,7 +2947,18 @@ 0D4C;MALAYALAM VOWEL SIGN AU;Mc;0;L;0D46 0D57;;;;N;;;;; 0D4D;MALAYALAM SIGN VIRAMA;Mn;9;NSM;;;;;N;;;;; 0D4E;MALAYALAM LETTER DOT REPH;Lo;0;L;;;;;N;;;;; +0D4F;MALAYALAM SIGN PARA;So;0;L;;;;;N;;;;; +0D54;MALAYALAM LETTER CHILLU M;Lo;0;L;;;;;N;;;;; +0D55;MALAYALAM LETTER CHILLU Y;Lo;0;L;;;;;N;;;;; +0D56;MALAYALAM LETTER CHILLU LLL;Lo;0;L;;;;;N;;;;; 0D57;MALAYALAM AU LENGTH MARK;Mc;0;L;;;;;N;;;;; +0D58;MALAYALAM FRACTION ONE ONE-HUNDRED-AND-SIXTIETH;No;0;L;;;;1/160;N;;;;; +0D59;MALAYALAM FRACTION ONE FORTIETH;No;0;L;;;;1/40;N;;;;; +0D5A;MALAYALAM FRACTION THREE EIGHTIETHS;No;0;L;;;;3/80;N;;;;; +0D5B;MALAYALAM FRACTION ONE TWENTIETH;No;0;L;;;;1/20;N;;;;; +0D5C;MALAYALAM FRACTION ONE TENTH;No;0;L;;;;1/10;N;;;;; +0D5D;MALAYALAM FRACTION THREE TWENTIETHS;No;0;L;;;;3/20;N;;;;; +0D5E;MALAYALAM FRACTION ONE FIFTH;No;0;L;;;;1/5;N;;;;; 0D5F;MALAYALAM LETTER ARCHAIC II;Lo;0;L;;;;;N;;;;; 0D60;MALAYALAM LETTER VOCALIC RR;Lo;0;L;;;;;N;;;;; 0D61;MALAYALAM LETTER VOCALIC LL;Lo;0;L;;;;;N;;;;; @@ -2945,6 +2980,9 @@ 0D73;MALAYALAM FRACTION ONE QUARTER;No;0;L;;;;1/4;N;;;;; 0D74;MALAYALAM FRACTION ONE HALF;No;0;L;;;;1/2;N;;;;; 0D75;MALAYALAM FRACTION THREE QUARTERS;No;0;L;;;;3/4;N;;;;; +0D76;MALAYALAM FRACTION ONE SIXTEENTH;No;0;L;;;;1/16;N;;;;; +0D77;MALAYALAM FRACTION ONE EIGHTH;No;0;L;;;;1/8;N;;;;; +0D78;MALAYALAM FRACTION THREE SIXTEENTHS;No;0;L;;;;3/16;N;;;;; 0D79;MALAYALAM DATE MARK;So;0;L;;;;;N;;;;; 0D7A;MALAYALAM LETTER CHILLU NN;Lo;0;L;;;;;N;;;;; 0D7B;MALAYALAM LETTER CHILLU N;Lo;0;L;;;;;N;;;;; @@ -5458,8 +5496,8 @@ 1882;MONGOLIAN LETTER ALI GALI DAMARU;Lo;0;L;;;;;N;;;;; 1883;MONGOLIAN LETTER ALI GALI UBADAMA;Lo;0;L;;;;;N;;;;; 1884;MONGOLIAN LETTER ALI GALI INVERTED UBADAMA;Lo;0;L;;;;;N;;;;; -1885;MONGOLIAN LETTER ALI GALI BALUDA;Lo;0;L;;;;;N;;;;; -1886;MONGOLIAN LETTER ALI GALI THREE BALUDA;Lo;0;L;;;;;N;;;;; +1885;MONGOLIAN LETTER ALI GALI BALUDA;Mn;0;NSM;;;;;N;;;;; +1886;MONGOLIAN LETTER ALI GALI THREE BALUDA;Mn;0;NSM;;;;;N;;;;; 1887;MONGOLIAN LETTER ALI GALI A;Lo;0;L;;;;;N;;;;; 1888;MONGOLIAN LETTER ALI GALI I;Lo;0;L;;;;;N;;;;; 1889;MONGOLIAN LETTER ALI GALI KA;Lo;0;L;;;;;N;;;;; @@ -6319,6 +6357,15 @@ 1C7D;OL CHIKI AHAD;Lm;0;L;;;;;N;;;;; 1C7E;OL CHIKI PUNCTUATION MUCAAD;Po;0;L;;;;;N;;;;; 1C7F;OL CHIKI PUNCTUATION DOUBLE MUCAAD;Po;0;L;;;;;N;;;;; +1C80;CYRILLIC SMALL LETTER ROUNDED VE;Ll;0;L;;;;;N;;;0412;;0412 +1C81;CYRILLIC SMALL LETTER LONG-LEGGED DE;Ll;0;L;;;;;N;;;0414;;0414 +1C82;CYRILLIC SMALL LETTER NARROW O;Ll;0;L;;;;;N;;;041E;;041E +1C83;CYRILLIC SMALL LETTER WIDE ES;Ll;0;L;;;;;N;;;0421;;0421 +1C84;CYRILLIC SMALL LETTER TALL TE;Ll;0;L;;;;;N;;;0422;;0422 +1C85;CYRILLIC SMALL LETTER THREE-LEGGED TE;Ll;0;L;;;;;N;;;0422;;0422 +1C86;CYRILLIC SMALL LETTER TALL HARD SIGN;Ll;0;L;;;;;N;;;042A;;042A +1C87;CYRILLIC SMALL LETTER TALL YAT;Ll;0;L;;;;;N;;;0462;;0462 +1C88;CYRILLIC SMALL LETTER UNBLENDED UK;Ll;0;L;;;;;N;;;A64A;;A64A 1CC0;SUNDANESE PUNCTUATION BINDU SURYA;Po;0;L;;;;;N;;;;; 1CC1;SUNDANESE PUNCTUATION BINDU PANGLONG;Po;0;L;;;;;N;;;;; 1CC2;SUNDANESE PUNCTUATION BINDU PURNAMA;Po;0;L;;;;;N;;;;; @@ -6614,6 +6661,7 @@ 1DF3;COMBINING LATIN SMALL LETTER O WITH DIAERESIS;Mn;230;NSM;;;;;N;;;;; 1DF4;COMBINING LATIN SMALL LETTER U WITH DIAERESIS;Mn;230;NSM;;;;;N;;;;; 1DF5;COMBINING UP TACK ABOVE;Mn;230;NSM;;;;;N;;;;; +1DFB;COMBINING DELETION MARK;Mn;230;NSM;;;;;N;;;;; 1DFC;COMBINING DOUBLE INVERTED BREVE BELOW;Mn;233;NSM;;;;;N;;;;; 1DFD;COMBINING ALMOST EQUAL TO BELOW;Mn;220;NSM;;;;;N;;;;; 1DFE;COMBINING LEFT ARROWHEAD ABOVE;Mn;230;NSM;;;;;N;;;;; @@ -8083,6 +8131,10 @@ 23F8;DOUBLE VERTICAL BAR;So;0;ON;;;;;N;;;;; 23F9;BLACK SQUARE FOR STOP;So;0;ON;;;;;N;;;;; 23FA;BLACK CIRCLE FOR RECORD;So;0;ON;;;;;N;;;;; +23FB;POWER SYMBOL;So;0;ON;;;;;N;;;;; +23FC;POWER ON-OFF SYMBOL;So;0;ON;;;;;N;;;;; +23FD;POWER ON SYMBOL;So;0;ON;;;;;N;;;;; +23FE;POWER SLEEP SYMBOL;So;0;ON;;;;;N;;;;; 2400;SYMBOL FOR NULL;So;0;ON;;;;;N;GRAPHIC FOR NULL;;;; 2401;SYMBOL FOR START OF HEADING;So;0;ON;;;;;N;GRAPHIC FOR START OF HEADING;;;; 2402;SYMBOL FOR START OF TEXT;So;0;ON;;;;;N;GRAPHIC FOR START OF TEXT;;;; @@ -10561,6 +10613,8 @@ 2E40;DOUBLE HYPHEN;Pd;0;ON;;;;;N;;;;; 2E41;REVERSED COMMA;Po;0;ON;;;;;N;;;;; 2E42;DOUBLE LOW-REVERSED-9 QUOTATION MARK;Ps;0;ON;;;;;N;;;;; +2E43;DASH WITH LEFT UPTURN;Po;0;ON;;;;;N;;;;; +2E44;DOUBLE SUSPENSION MARK;Po;0;ON;;;;;N;;;;; 2E80;CJK RADICAL REPEAT;So;0;ON;;;;;N;;;;; 2E81;CJK RADICAL CLIFF;So;0;ON;;;;;N;;;;; 2E82;CJK RADICAL SECOND ONE;So;0;ON;;;;;N;;;;; @@ -13889,6 +13943,7 @@ A7AA;LATIN CAPITAL LETTER H WITH HOOK;Lu;0;L;;;;;N;;;;0266; A7AB;LATIN CAPITAL LETTER REVERSED OPEN E;Lu;0;L;;;;;N;;;;025C; A7AC;LATIN CAPITAL LETTER SCRIPT G;Lu;0;L;;;;;N;;;;0261; A7AD;LATIN CAPITAL LETTER L WITH BELT;Lu;0;L;;;;;N;;;;026C; +A7AE;LATIN CAPITAL LETTER SMALL CAPITAL I;Lu;0;L;;;;;N;;;;026A; A7B0;LATIN CAPITAL LETTER TURNED K;Lu;0;L;;;;;N;;;;029E; A7B1;LATIN CAPITAL LETTER TURNED T;Lu;0;L;;;;;N;;;;0287; A7B2;LATIN CAPITAL LETTER J WITH CROSSED-TAIL;Lu;0;L;;;;;N;;;;029D; @@ -14085,6 +14140,7 @@ A8C1;SAURASHTRA VOWEL SIGN O;Mc;0;L;;;;;N;;;;; A8C2;SAURASHTRA VOWEL SIGN OO;Mc;0;L;;;;;N;;;;; A8C3;SAURASHTRA VOWEL SIGN AU;Mc;0;L;;;;;N;;;;; A8C4;SAURASHTRA SIGN VIRAMA;Mn;9;NSM;;;;;N;;;;; +A8C5;SAURASHTRA SIGN CANDRABINDU;Mn;0;NSM;;;;;N;;;;; A8CE;SAURASHTRA DANDA;Po;0;L;;;;;N;;;;; A8CF;SAURASHTRA DOUBLE DANDA;Po;0;L;;;;;N;;;;; A8D0;SAURASHTRA DIGIT ZERO;Nd;0;L;;0;0;0;N;;;;; @@ -16834,6 +16890,8 @@ FFFD;REPLACEMENT CHARACTER;So;0;ON;;;;;N;;;;; 1018A;GREEK ZERO SIGN;No;0;ON;;;;0;N;;;;; 1018B;GREEK ONE QUARTER SIGN;No;0;ON;;;;1/4;N;;;;; 1018C;GREEK SINUSOID SIGN;So;0;ON;;;;;N;;;;; +1018D;GREEK INDICTION SIGN;So;0;L;;;;;N;;;;; +1018E;NOMISMA SIGN;So;0;L;;;;;N;;;;; 10190;ROMAN SEXTANS SIGN;So;0;ON;;;;;N;;;;; 10191;ROMAN UNCIA SIGN;So;0;ON;;;;;N;;;;; 10192;ROMAN SEMUNCIA SIGN;So;0;ON;;;;;N;;;;; @@ -17354,6 +17412,78 @@ FFFD;REPLACEMENT CHARACTER;So;0;ON;;;;;N;;;;; 104A7;OSMANYA DIGIT SEVEN;Nd;0;L;;7;7;7;N;;;;; 104A8;OSMANYA DIGIT EIGHT;Nd;0;L;;8;8;8;N;;;;; 104A9;OSMANYA DIGIT NINE;Nd;0;L;;9;9;9;N;;;;; +104B0;OSAGE CAPITAL LETTER A;Lu;0;L;;;;;N;;;;104D8; +104B1;OSAGE CAPITAL LETTER AI;Lu;0;L;;;;;N;;;;104D9; +104B2;OSAGE CAPITAL LETTER AIN;Lu;0;L;;;;;N;;;;104DA; +104B3;OSAGE CAPITAL LETTER AH;Lu;0;L;;;;;N;;;;104DB; +104B4;OSAGE CAPITAL LETTER BRA;Lu;0;L;;;;;N;;;;104DC; +104B5;OSAGE CAPITAL LETTER CHA;Lu;0;L;;;;;N;;;;104DD; +104B6;OSAGE CAPITAL LETTER EHCHA;Lu;0;L;;;;;N;;;;104DE; +104B7;OSAGE CAPITAL LETTER E;Lu;0;L;;;;;N;;;;104DF; +104B8;OSAGE CAPITAL LETTER EIN;Lu;0;L;;;;;N;;;;104E0; +104B9;OSAGE CAPITAL LETTER HA;Lu;0;L;;;;;N;;;;104E1; +104BA;OSAGE CAPITAL LETTER HYA;Lu;0;L;;;;;N;;;;104E2; +104BB;OSAGE CAPITAL LETTER I;Lu;0;L;;;;;N;;;;104E3; +104BC;OSAGE CAPITAL LETTER KA;Lu;0;L;;;;;N;;;;104E4; +104BD;OSAGE CAPITAL LETTER EHKA;Lu;0;L;;;;;N;;;;104E5; +104BE;OSAGE CAPITAL LETTER KYA;Lu;0;L;;;;;N;;;;104E6; +104BF;OSAGE CAPITAL LETTER LA;Lu;0;L;;;;;N;;;;104E7; +104C0;OSAGE CAPITAL LETTER MA;Lu;0;L;;;;;N;;;;104E8; +104C1;OSAGE CAPITAL LETTER NA;Lu;0;L;;;;;N;;;;104E9; +104C2;OSAGE CAPITAL LETTER O;Lu;0;L;;;;;N;;;;104EA; +104C3;OSAGE CAPITAL LETTER OIN;Lu;0;L;;;;;N;;;;104EB; +104C4;OSAGE CAPITAL LETTER PA;Lu;0;L;;;;;N;;;;104EC; +104C5;OSAGE CAPITAL LETTER EHPA;Lu;0;L;;;;;N;;;;104ED; +104C6;OSAGE CAPITAL LETTER SA;Lu;0;L;;;;;N;;;;104EE; +104C7;OSAGE CAPITAL LETTER SHA;Lu;0;L;;;;;N;;;;104EF; +104C8;OSAGE CAPITAL LETTER TA;Lu;0;L;;;;;N;;;;104F0; +104C9;OSAGE CAPITAL LETTER EHTA;Lu;0;L;;;;;N;;;;104F1; +104CA;OSAGE CAPITAL LETTER TSA;Lu;0;L;;;;;N;;;;104F2; +104CB;OSAGE CAPITAL LETTER EHTSA;Lu;0;L;;;;;N;;;;104F3; +104CC;OSAGE CAPITAL LETTER TSHA;Lu;0;L;;;;;N;;;;104F4; +104CD;OSAGE CAPITAL LETTER DHA;Lu;0;L;;;;;N;;;;104F5; +104CE;OSAGE CAPITAL LETTER U;Lu;0;L;;;;;N;;;;104F6; +104CF;OSAGE CAPITAL LETTER WA;Lu;0;L;;;;;N;;;;104F7; +104D0;OSAGE CAPITAL LETTER KHA;Lu;0;L;;;;;N;;;;104F8; +104D1;OSAGE CAPITAL LETTER GHA;Lu;0;L;;;;;N;;;;104F9; +104D2;OSAGE CAPITAL LETTER ZA;Lu;0;L;;;;;N;;;;104FA; +104D3;OSAGE CAPITAL LETTER ZHA;Lu;0;L;;;;;N;;;;104FB; +104D8;OSAGE SMALL LETTER A;Ll;0;L;;;;;N;;;104B0;;104B0 +104D9;OSAGE SMALL LETTER AI;Ll;0;L;;;;;N;;;104B1;;104B1 +104DA;OSAGE SMALL LETTER AIN;Ll;0;L;;;;;N;;;104B2;;104B2 +104DB;OSAGE SMALL LETTER AH;Ll;0;L;;;;;N;;;104B3;;104B3 +104DC;OSAGE SMALL LETTER BRA;Ll;0;L;;;;;N;;;104B4;;104B4 +104DD;OSAGE SMALL LETTER CHA;Ll;0;L;;;;;N;;;104B5;;104B5 +104DE;OSAGE SMALL LETTER EHCHA;Ll;0;L;;;;;N;;;104B6;;104B6 +104DF;OSAGE SMALL LETTER E;Ll;0;L;;;;;N;;;104B7;;104B7 +104E0;OSAGE SMALL LETTER EIN;Ll;0;L;;;;;N;;;104B8;;104B8 +104E1;OSAGE SMALL LETTER HA;Ll;0;L;;;;;N;;;104B9;;104B9 +104E2;OSAGE SMALL LETTER HYA;Ll;0;L;;;;;N;;;104BA;;104BA +104E3;OSAGE SMALL LETTER I;Ll;0;L;;;;;N;;;104BB;;104BB +104E4;OSAGE SMALL LETTER KA;Ll;0;L;;;;;N;;;104BC;;104BC +104E5;OSAGE SMALL LETTER EHKA;Ll;0;L;;;;;N;;;104BD;;104BD +104E6;OSAGE SMALL LETTER KYA;Ll;0;L;;;;;N;;;104BE;;104BE +104E7;OSAGE SMALL LETTER LA;Ll;0;L;;;;;N;;;104BF;;104BF +104E8;OSAGE SMALL LETTER MA;Ll;0;L;;;;;N;;;104C0;;104C0 +104E9;OSAGE SMALL LETTER NA;Ll;0;L;;;;;N;;;104C1;;104C1 +104EA;OSAGE SMALL LETTER O;Ll;0;L;;;;;N;;;104C2;;104C2 +104EB;OSAGE SMALL LETTER OIN;Ll;0;L;;;;;N;;;104C3;;104C3 +104EC;OSAGE SMALL LETTER PA;Ll;0;L;;;;;N;;;104C4;;104C4 +104ED;OSAGE SMALL LETTER EHPA;Ll;0;L;;;;;N;;;104C5;;104C5 +104EE;OSAGE SMALL LETTER SA;Ll;0;L;;;;;N;;;104C6;;104C6 +104EF;OSAGE SMALL LETTER SHA;Ll;0;L;;;;;N;;;104C7;;104C7 +104F0;OSAGE SMALL LETTER TA;Ll;0;L;;;;;N;;;104C8;;104C8 +104F1;OSAGE SMALL LETTER EHTA;Ll;0;L;;;;;N;;;104C9;;104C9 +104F2;OSAGE SMALL LETTER TSA;Ll;0;L;;;;;N;;;104CA;;104CA +104F3;OSAGE SMALL LETTER EHTSA;Ll;0;L;;;;;N;;;104CB;;104CB +104F4;OSAGE SMALL LETTER TSHA;Ll;0;L;;;;;N;;;104CC;;104CC +104F5;OSAGE SMALL LETTER DHA;Ll;0;L;;;;;N;;;104CD;;104CD +104F6;OSAGE SMALL LETTER U;Ll;0;L;;;;;N;;;104CE;;104CE +104F7;OSAGE SMALL LETTER WA;Ll;0;L;;;;;N;;;104CF;;104CF +104F8;OSAGE SMALL LETTER KHA;Ll;0;L;;;;;N;;;104D0;;104D0 +104F9;OSAGE SMALL LETTER GHA;Ll;0;L;;;;;N;;;104D1;;104D1 +104FA;OSAGE SMALL LETTER ZA;Ll;0;L;;;;;N;;;104D2;;104D2 +104FB;OSAGE SMALL LETTER ZHA;Ll;0;L;;;;;N;;;104D3;;104D3 10500;ELBASAN LETTER A;Lo;0;L;;;;;N;;;;; 10501;ELBASAN LETTER BE;Lo;0;L;;;;;N;;;;; 10502;ELBASAN LETTER CE;Lo;0;L;;;;;N;;;;; @@ -19180,6 +19310,7 @@ FFFD;REPLACEMENT CHARACTER;So;0;ON;;;;;N;;;;; 1123B;KHOJKI SECTION MARK;Po;0;L;;;;;N;;;;; 1123C;KHOJKI DOUBLE SECTION MARK;Po;0;L;;;;;N;;;;; 1123D;KHOJKI ABBREVIATION SIGN;Po;0;L;;;;;N;;;;; +1123E;KHOJKI SIGN SUKUN;Mn;0;NSM;;;;;N;;;;; 11280;MULTANI LETTER A;Lo;0;L;;;;;N;;;;; 11281;MULTANI LETTER I;Lo;0;L;;;;;N;;;;; 11282;MULTANI LETTER U;Lo;0;L;;;;;N;;;;; @@ -19372,6 +19503,98 @@ FFFD;REPLACEMENT CHARACTER;So;0;ON;;;;;N;;;;; 11372;COMBINING GRANTHA LETTER NA;Mn;230;NSM;;;;;N;;;;; 11373;COMBINING GRANTHA LETTER VI;Mn;230;NSM;;;;;N;;;;; 11374;COMBINING GRANTHA LETTER PA;Mn;230;NSM;;;;;N;;;;; +11400;NEWA LETTER A;Lo;0;L;;;;;N;;;;; +11401;NEWA LETTER AA;Lo;0;L;;;;;N;;;;; +11402;NEWA LETTER I;Lo;0;L;;;;;N;;;;; +11403;NEWA LETTER II;Lo;0;L;;;;;N;;;;; +11404;NEWA LETTER U;Lo;0;L;;;;;N;;;;; +11405;NEWA LETTER UU;Lo;0;L;;;;;N;;;;; +11406;NEWA LETTER VOCALIC R;Lo;0;L;;;;;N;;;;; +11407;NEWA LETTER VOCALIC RR;Lo;0;L;;;;;N;;;;; +11408;NEWA LETTER VOCALIC L;Lo;0;L;;;;;N;;;;; +11409;NEWA LETTER VOCALIC LL;Lo;0;L;;;;;N;;;;; +1140A;NEWA LETTER E;Lo;0;L;;;;;N;;;;; +1140B;NEWA LETTER AI;Lo;0;L;;;;;N;;;;; +1140C;NEWA LETTER O;Lo;0;L;;;;;N;;;;; +1140D;NEWA LETTER AU;Lo;0;L;;;;;N;;;;; +1140E;NEWA LETTER KA;Lo;0;L;;;;;N;;;;; +1140F;NEWA LETTER KHA;Lo;0;L;;;;;N;;;;; +11410;NEWA LETTER GA;Lo;0;L;;;;;N;;;;; +11411;NEWA LETTER GHA;Lo;0;L;;;;;N;;;;; +11412;NEWA LETTER NGA;Lo;0;L;;;;;N;;;;; +11413;NEWA LETTER NGHA;Lo;0;L;;;;;N;;;;; +11414;NEWA LETTER CA;Lo;0;L;;;;;N;;;;; +11415;NEWA LETTER CHA;Lo;0;L;;;;;N;;;;; +11416;NEWA LETTER JA;Lo;0;L;;;;;N;;;;; +11417;NEWA LETTER JHA;Lo;0;L;;;;;N;;;;; +11418;NEWA LETTER NYA;Lo;0;L;;;;;N;;;;; +11419;NEWA LETTER NYHA;Lo;0;L;;;;;N;;;;; +1141A;NEWA LETTER TTA;Lo;0;L;;;;;N;;;;; +1141B;NEWA LETTER TTHA;Lo;0;L;;;;;N;;;;; +1141C;NEWA LETTER DDA;Lo;0;L;;;;;N;;;;; +1141D;NEWA LETTER DDHA;Lo;0;L;;;;;N;;;;; +1141E;NEWA LETTER NNA;Lo;0;L;;;;;N;;;;; +1141F;NEWA LETTER TA;Lo;0;L;;;;;N;;;;; +11420;NEWA LETTER THA;Lo;0;L;;;;;N;;;;; +11421;NEWA LETTER DA;Lo;0;L;;;;;N;;;;; +11422;NEWA LETTER DHA;Lo;0;L;;;;;N;;;;; +11423;NEWA LETTER NA;Lo;0;L;;;;;N;;;;; +11424;NEWA LETTER NHA;Lo;0;L;;;;;N;;;;; +11425;NEWA LETTER PA;Lo;0;L;;;;;N;;;;; +11426;NEWA LETTER PHA;Lo;0;L;;;;;N;;;;; +11427;NEWA LETTER BA;Lo;0;L;;;;;N;;;;; +11428;NEWA LETTER BHA;Lo;0;L;;;;;N;;;;; +11429;NEWA LETTER MA;Lo;0;L;;;;;N;;;;; +1142A;NEWA LETTER MHA;Lo;0;L;;;;;N;;;;; +1142B;NEWA LETTER YA;Lo;0;L;;;;;N;;;;; +1142C;NEWA LETTER RA;Lo;0;L;;;;;N;;;;; +1142D;NEWA LETTER RHA;Lo;0;L;;;;;N;;;;; +1142E;NEWA LETTER LA;Lo;0;L;;;;;N;;;;; +1142F;NEWA LETTER LHA;Lo;0;L;;;;;N;;;;; +11430;NEWA LETTER WA;Lo;0;L;;;;;N;;;;; +11431;NEWA LETTER SHA;Lo;0;L;;;;;N;;;;; +11432;NEWA LETTER SSA;Lo;0;L;;;;;N;;;;; +11433;NEWA LETTER SA;Lo;0;L;;;;;N;;;;; +11434;NEWA LETTER HA;Lo;0;L;;;;;N;;;;; +11435;NEWA VOWEL SIGN AA;Mc;0;L;;;;;N;;;;; +11436;NEWA VOWEL SIGN I;Mc;0;L;;;;;N;;;;; +11437;NEWA VOWEL SIGN II;Mc;0;L;;;;;N;;;;; +11438;NEWA VOWEL SIGN U;Mn;0;NSM;;;;;N;;;;; +11439;NEWA VOWEL SIGN UU;Mn;0;NSM;;;;;N;;;;; +1143A;NEWA VOWEL SIGN VOCALIC R;Mn;0;NSM;;;;;N;;;;; +1143B;NEWA VOWEL SIGN VOCALIC RR;Mn;0;NSM;;;;;N;;;;; +1143C;NEWA VOWEL SIGN VOCALIC L;Mn;0;NSM;;;;;N;;;;; +1143D;NEWA VOWEL SIGN VOCALIC LL;Mn;0;NSM;;;;;N;;;;; +1143E;NEWA VOWEL SIGN E;Mn;0;NSM;;;;;N;;;;; +1143F;NEWA VOWEL SIGN AI;Mn;0;NSM;;;;;N;;;;; +11440;NEWA VOWEL SIGN O;Mc;0;L;;;;;N;;;;; +11441;NEWA VOWEL SIGN AU;Mc;0;L;;;;;N;;;;; +11442;NEWA SIGN VIRAMA;Mn;9;NSM;;;;;N;;;;; +11443;NEWA SIGN CANDRABINDU;Mn;0;NSM;;;;;N;;;;; +11444;NEWA SIGN ANUSVARA;Mn;0;NSM;;;;;N;;;;; +11445;NEWA SIGN VISARGA;Mc;0;L;;;;;N;;;;; +11446;NEWA SIGN NUKTA;Mn;7;NSM;;;;;N;;;;; +11447;NEWA SIGN AVAGRAHA;Lo;0;L;;;;;N;;;;; +11448;NEWA SIGN FINAL ANUSVARA;Lo;0;L;;;;;N;;;;; +11449;NEWA OM;Lo;0;L;;;;;N;;;;; +1144A;NEWA SIDDHI;Lo;0;L;;;;;N;;;;; +1144B;NEWA DANDA;Po;0;L;;;;;N;;;;; +1144C;NEWA DOUBLE DANDA;Po;0;L;;;;;N;;;;; +1144D;NEWA COMMA;Po;0;L;;;;;N;;;;; +1144E;NEWA GAP FILLER;Po;0;L;;;;;N;;;;; +1144F;NEWA ABBREVIATION SIGN;Po;0;L;;;;;N;;;;; +11450;NEWA DIGIT ZERO;Nd;0;L;;0;0;0;N;;;;; +11451;NEWA DIGIT ONE;Nd;0;L;;1;1;1;N;;;;; +11452;NEWA DIGIT TWO;Nd;0;L;;2;2;2;N;;;;; +11453;NEWA DIGIT THREE;Nd;0;L;;3;3;3;N;;;;; +11454;NEWA DIGIT FOUR;Nd;0;L;;4;4;4;N;;;;; +11455;NEWA DIGIT FIVE;Nd;0;L;;5;5;5;N;;;;; +11456;NEWA DIGIT SIX;Nd;0;L;;6;6;6;N;;;;; +11457;NEWA DIGIT SEVEN;Nd;0;L;;7;7;7;N;;;;; +11458;NEWA DIGIT EIGHT;Nd;0;L;;8;8;8;N;;;;; +11459;NEWA DIGIT NINE;Nd;0;L;;9;9;9;N;;;;; +1145B;NEWA PLACEHOLDER MARK;Po;0;L;;;;;N;;;;; +1145D;NEWA INSERTION SIGN;Po;0;L;;;;;N;;;;; 11480;TIRHUTA ANJI;Lo;0;L;;;;;N;;;;; 11481;TIRHUTA LETTER A;Lo;0;L;;;;;N;;;;; 11482;TIRHUTA LETTER AA;Lo;0;L;;;;;N;;;;; @@ -19625,6 +19848,19 @@ FFFD;REPLACEMENT CHARACTER;So;0;ON;;;;;N;;;;; 11657;MODI DIGIT SEVEN;Nd;0;L;;7;7;7;N;;;;; 11658;MODI DIGIT EIGHT;Nd;0;L;;8;8;8;N;;;;; 11659;MODI DIGIT NINE;Nd;0;L;;9;9;9;N;;;;; +11660;MONGOLIAN BIRGA WITH ORNAMENT;Po;0;ON;;;;;N;;;;; +11661;MONGOLIAN ROTATED BIRGA;Po;0;ON;;;;;N;;;;; +11662;MONGOLIAN DOUBLE BIRGA WITH ORNAMENT;Po;0;ON;;;;;N;;;;; +11663;MONGOLIAN TRIPLE BIRGA WITH ORNAMENT;Po;0;ON;;;;;N;;;;; +11664;MONGOLIAN BIRGA WITH DOUBLE ORNAMENT;Po;0;ON;;;;;N;;;;; +11665;MONGOLIAN ROTATED BIRGA WITH ORNAMENT;Po;0;ON;;;;;N;;;;; +11666;MONGOLIAN ROTATED BIRGA WITH DOUBLE ORNAMENT;Po;0;ON;;;;;N;;;;; +11667;MONGOLIAN INVERTED BIRGA;Po;0;ON;;;;;N;;;;; +11668;MONGOLIAN INVERTED BIRGA WITH DOUBLE ORNAMENT;Po;0;ON;;;;;N;;;;; +11669;MONGOLIAN SWIRL BIRGA;Po;0;ON;;;;;N;;;;; +1166A;MONGOLIAN SWIRL BIRGA WITH ORNAMENT;Po;0;ON;;;;;N;;;;; +1166B;MONGOLIAN SWIRL BIRGA WITH DOUBLE ORNAMENT;Po;0;ON;;;;;N;;;;; +1166C;MONGOLIAN TURNED SWIRL BIRGA WITH DOUBLE ORNAMENT;Po;0;ON;;;;;N;;;;; 11680;TAKRI LETTER A;Lo;0;L;;;;;N;;;;; 11681;TAKRI LETTER AA;Lo;0;L;;;;;N;;;;; 11682;TAKRI LETTER I;Lo;0;L;;;;;N;;;;; @@ -19889,6 +20125,171 @@ FFFD;REPLACEMENT CHARACTER;So;0;ON;;;;;N;;;;; 11AF6;PAU CIN HAU LOW-FALLING TONE LONG FINAL;Lo;0;L;;;;;N;;;;; 11AF7;PAU CIN HAU LOW-FALLING TONE FINAL;Lo;0;L;;;;;N;;;;; 11AF8;PAU CIN HAU GLOTTAL STOP FINAL;Lo;0;L;;;;;N;;;;; +11C00;BHAIKSUKI LETTER A;Lo;0;L;;;;;N;;;;; +11C01;BHAIKSUKI LETTER AA;Lo;0;L;;;;;N;;;;; +11C02;BHAIKSUKI LETTER I;Lo;0;L;;;;;N;;;;; +11C03;BHAIKSUKI LETTER II;Lo;0;L;;;;;N;;;;; +11C04;BHAIKSUKI LETTER U;Lo;0;L;;;;;N;;;;; +11C05;BHAIKSUKI LETTER UU;Lo;0;L;;;;;N;;;;; +11C06;BHAIKSUKI LETTER VOCALIC R;Lo;0;L;;;;;N;;;;; +11C07;BHAIKSUKI LETTER VOCALIC RR;Lo;0;L;;;;;N;;;;; +11C08;BHAIKSUKI LETTER VOCALIC L;Lo;0;L;;;;;N;;;;; +11C0A;BHAIKSUKI LETTER E;Lo;0;L;;;;;N;;;;; +11C0B;BHAIKSUKI LETTER AI;Lo;0;L;;;;;N;;;;; +11C0C;BHAIKSUKI LETTER O;Lo;0;L;;;;;N;;;;; +11C0D;BHAIKSUKI LETTER AU;Lo;0;L;;;;;N;;;;; +11C0E;BHAIKSUKI LETTER KA;Lo;0;L;;;;;N;;;;; +11C0F;BHAIKSUKI LETTER KHA;Lo;0;L;;;;;N;;;;; +11C10;BHAIKSUKI LETTER GA;Lo;0;L;;;;;N;;;;; +11C11;BHAIKSUKI LETTER GHA;Lo;0;L;;;;;N;;;;; +11C12;BHAIKSUKI LETTER NGA;Lo;0;L;;;;;N;;;;; +11C13;BHAIKSUKI LETTER CA;Lo;0;L;;;;;N;;;;; +11C14;BHAIKSUKI LETTER CHA;Lo;0;L;;;;;N;;;;; +11C15;BHAIKSUKI LETTER JA;Lo;0;L;;;;;N;;;;; +11C16;BHAIKSUKI LETTER JHA;Lo;0;L;;;;;N;;;;; +11C17;BHAIKSUKI LETTER NYA;Lo;0;L;;;;;N;;;;; +11C18;BHAIKSUKI LETTER TTA;Lo;0;L;;;;;N;;;;; +11C19;BHAIKSUKI LETTER TTHA;Lo;0;L;;;;;N;;;;; +11C1A;BHAIKSUKI LETTER DDA;Lo;0;L;;;;;N;;;;; +11C1B;BHAIKSUKI LETTER DDHA;Lo;0;L;;;;;N;;;;; +11C1C;BHAIKSUKI LETTER NNA;Lo;0;L;;;;;N;;;;; +11C1D;BHAIKSUKI LETTER TA;Lo;0;L;;;;;N;;;;; +11C1E;BHAIKSUKI LETTER THA;Lo;0;L;;;;;N;;;;; +11C1F;BHAIKSUKI LETTER DA;Lo;0;L;;;;;N;;;;; +11C20;BHAIKSUKI LETTER DHA;Lo;0;L;;;;;N;;;;; +11C21;BHAIKSUKI LETTER NA;Lo;0;L;;;;;N;;;;; +11C22;BHAIKSUKI LETTER PA;Lo;0;L;;;;;N;;;;; +11C23;BHAIKSUKI LETTER PHA;Lo;0;L;;;;;N;;;;; +11C24;BHAIKSUKI LETTER BA;Lo;0;L;;;;;N;;;;; +11C25;BHAIKSUKI LETTER BHA;Lo;0;L;;;;;N;;;;; +11C26;BHAIKSUKI LETTER MA;Lo;0;L;;;;;N;;;;; +11C27;BHAIKSUKI LETTER YA;Lo;0;L;;;;;N;;;;; +11C28;BHAIKSUKI LETTER RA;Lo;0;L;;;;;N;;;;; +11C29;BHAIKSUKI LETTER LA;Lo;0;L;;;;;N;;;;; +11C2A;BHAIKSUKI LETTER VA;Lo;0;L;;;;;N;;;;; +11C2B;BHAIKSUKI LETTER SHA;Lo;0;L;;;;;N;;;;; +11C2C;BHAIKSUKI LETTER SSA;Lo;0;L;;;;;N;;;;; +11C2D;BHAIKSUKI LETTER SA;Lo;0;L;;;;;N;;;;; +11C2E;BHAIKSUKI LETTER HA;Lo;0;L;;;;;N;;;;; +11C2F;BHAIKSUKI VOWEL SIGN AA;Mc;0;L;;;;;N;;;;; +11C30;BHAIKSUKI VOWEL SIGN I;Mn;0;NSM;;;;;N;;;;; +11C31;BHAIKSUKI VOWEL SIGN II;Mn;0;NSM;;;;;N;;;;; +11C32;BHAIKSUKI VOWEL SIGN U;Mn;0;NSM;;;;;N;;;;; +11C33;BHAIKSUKI VOWEL SIGN UU;Mn;0;NSM;;;;;N;;;;; +11C34;BHAIKSUKI VOWEL SIGN VOCALIC R;Mn;0;NSM;;;;;N;;;;; +11C35;BHAIKSUKI VOWEL SIGN VOCALIC RR;Mn;0;NSM;;;;;N;;;;; +11C36;BHAIKSUKI VOWEL SIGN VOCALIC L;Mn;0;NSM;;;;;N;;;;; +11C38;BHAIKSUKI VOWEL SIGN E;Mc;0;L;;;;;N;;;;; +11C39;BHAIKSUKI VOWEL SIGN AI;Mc;0;L;;;;;N;;;;; +11C3A;BHAIKSUKI VOWEL SIGN O;Mc;0;L;;;;;N;;;;; +11C3B;BHAIKSUKI VOWEL SIGN AU;Mc;0;L;;;;;N;;;;; +11C3C;BHAIKSUKI SIGN CANDRABINDU;Mn;0;NSM;;;;;N;;;;; +11C3D;BHAIKSUKI SIGN ANUSVARA;Mn;0;NSM;;;;;N;;;;; +11C3E;BHAIKSUKI SIGN VISARGA;Mc;0;L;;;;;N;;;;; +11C3F;BHAIKSUKI SIGN VIRAMA;Mn;9;L;;;;;N;;;;; +11C40;BHAIKSUKI SIGN AVAGRAHA;Lo;0;L;;;;;N;;;;; +11C41;BHAIKSUKI DANDA;Po;0;L;;;;;N;;;;; +11C42;BHAIKSUKI DOUBLE DANDA;Po;0;L;;;;;N;;;;; +11C43;BHAIKSUKI WORD SEPARATOR;Po;0;L;;;;;N;;;;; +11C44;BHAIKSUKI GAP FILLER-1;Po;0;L;;;;;N;;;;; +11C45;BHAIKSUKI GAP FILLER-2;Po;0;L;;;;;N;;;;; +11C50;BHAIKSUKI DIGIT ZERO;Nd;0;L;;0;0;0;N;;;;; +11C51;BHAIKSUKI DIGIT ONE;Nd;0;L;;1;1;1;N;;;;; +11C52;BHAIKSUKI DIGIT TWO;Nd;0;L;;2;2;2;N;;;;; +11C53;BHAIKSUKI DIGIT THREE;Nd;0;L;;3;3;3;N;;;;; +11C54;BHAIKSUKI DIGIT FOUR;Nd;0;L;;4;4;4;N;;;;; +11C55;BHAIKSUKI DIGIT FIVE;Nd;0;L;;5;5;5;N;;;;; +11C56;BHAIKSUKI DIGIT SIX;Nd;0;L;;6;6;6;N;;;;; +11C57;BHAIKSUKI DIGIT SEVEN;Nd;0;L;;7;7;7;N;;;;; +11C58;BHAIKSUKI DIGIT EIGHT;Nd;0;L;;8;8;8;N;;;;; +11C59;BHAIKSUKI DIGIT NINE;Nd;0;L;;9;9;9;N;;;;; +11C5A;BHAIKSUKI NUMBER ONE;No;0;L;;;;1;N;;;;; +11C5B;BHAIKSUKI NUMBER TWO;No;0;L;;;;2;N;;;;; +11C5C;BHAIKSUKI NUMBER THREE;No;0;L;;;;3;N;;;;; +11C5D;BHAIKSUKI NUMBER FOUR;No;0;L;;;;4;N;;;;; +11C5E;BHAIKSUKI NUMBER FIVE;No;0;L;;;;5;N;;;;; +11C5F;BHAIKSUKI NUMBER SIX;No;0;L;;;;6;N;;;;; +11C60;BHAIKSUKI NUMBER SEVEN;No;0;L;;;;7;N;;;;; +11C61;BHAIKSUKI NUMBER EIGHT;No;0;L;;;;8;N;;;;; +11C62;BHAIKSUKI NUMBER NINE;No;0;L;;;;9;N;;;;; +11C63;BHAIKSUKI NUMBER TEN;No;0;L;;;;10;N;;;;; +11C64;BHAIKSUKI NUMBER TWENTY;No;0;L;;;;20;N;;;;; +11C65;BHAIKSUKI NUMBER THIRTY;No;0;L;;;;30;N;;;;; +11C66;BHAIKSUKI NUMBER FORTY;No;0;L;;;;40;N;;;;; +11C67;BHAIKSUKI NUMBER FIFTY;No;0;L;;;;50;N;;;;; +11C68;BHAIKSUKI NUMBER SIXTY;No;0;L;;;;60;N;;;;; +11C69;BHAIKSUKI NUMBER SEVENTY;No;0;L;;;;70;N;;;;; +11C6A;BHAIKSUKI NUMBER EIGHTY;No;0;L;;;;80;N;;;;; +11C6B;BHAIKSUKI NUMBER NINETY;No;0;L;;;;90;N;;;;; +11C6C;BHAIKSUKI HUNDREDS UNIT MARK;No;0;L;;;;100;N;;;;; +11C70;MARCHEN HEAD MARK;Po;0;L;;;;;N;;;;; +11C71;MARCHEN MARK SHAD;Po;0;L;;;;;N;;;;; +11C72;MARCHEN LETTER KA;Lo;0;L;;;;;N;;;;; +11C73;MARCHEN LETTER KHA;Lo;0;L;;;;;N;;;;; +11C74;MARCHEN LETTER GA;Lo;0;L;;;;;N;;;;; +11C75;MARCHEN LETTER NGA;Lo;0;L;;;;;N;;;;; +11C76;MARCHEN LETTER CA;Lo;0;L;;;;;N;;;;; +11C77;MARCHEN LETTER CHA;Lo;0;L;;;;;N;;;;; +11C78;MARCHEN LETTER JA;Lo;0;L;;;;;N;;;;; +11C79;MARCHEN LETTER NYA;Lo;0;L;;;;;N;;;;; +11C7A;MARCHEN LETTER TA;Lo;0;L;;;;;N;;;;; +11C7B;MARCHEN LETTER THA;Lo;0;L;;;;;N;;;;; +11C7C;MARCHEN LETTER DA;Lo;0;L;;;;;N;;;;; +11C7D;MARCHEN LETTER NA;Lo;0;L;;;;;N;;;;; +11C7E;MARCHEN LETTER PA;Lo;0;L;;;;;N;;;;; +11C7F;MARCHEN LETTER PHA;Lo;0;L;;;;;N;;;;; +11C80;MARCHEN LETTER BA;Lo;0;L;;;;;N;;;;; +11C81;MARCHEN LETTER MA;Lo;0;L;;;;;N;;;;; +11C82;MARCHEN LETTER TSA;Lo;0;L;;;;;N;;;;; +11C83;MARCHEN LETTER TSHA;Lo;0;L;;;;;N;;;;; +11C84;MARCHEN LETTER DZA;Lo;0;L;;;;;N;;;;; +11C85;MARCHEN LETTER WA;Lo;0;L;;;;;N;;;;; +11C86;MARCHEN LETTER ZHA;Lo;0;L;;;;;N;;;;; +11C87;MARCHEN LETTER ZA;Lo;0;L;;;;;N;;;;; +11C88;MARCHEN LETTER -A;Lo;0;L;;;;;N;;;;; +11C89;MARCHEN LETTER YA;Lo;0;L;;;;;N;;;;; +11C8A;MARCHEN LETTER RA;Lo;0;L;;;;;N;;;;; +11C8B;MARCHEN LETTER LA;Lo;0;L;;;;;N;;;;; +11C8C;MARCHEN LETTER SHA;Lo;0;L;;;;;N;;;;; +11C8D;MARCHEN LETTER SA;Lo;0;L;;;;;N;;;;; +11C8E;MARCHEN LETTER HA;Lo;0;L;;;;;N;;;;; +11C8F;MARCHEN LETTER A;Lo;0;L;;;;;N;;;;; +11C92;MARCHEN SUBJOINED LETTER KA;Mn;0;NSM;;;;;N;;;;; +11C93;MARCHEN SUBJOINED LETTER KHA;Mn;0;NSM;;;;;N;;;;; +11C94;MARCHEN SUBJOINED LETTER GA;Mn;0;NSM;;;;;N;;;;; +11C95;MARCHEN SUBJOINED LETTER NGA;Mn;0;NSM;;;;;N;;;;; +11C96;MARCHEN SUBJOINED LETTER CA;Mn;0;NSM;;;;;N;;;;; +11C97;MARCHEN SUBJOINED LETTER CHA;Mn;0;NSM;;;;;N;;;;; +11C98;MARCHEN SUBJOINED LETTER JA;Mn;0;NSM;;;;;N;;;;; +11C99;MARCHEN SUBJOINED LETTER NYA;Mn;0;NSM;;;;;N;;;;; +11C9A;MARCHEN SUBJOINED LETTER TA;Mn;0;NSM;;;;;N;;;;; +11C9B;MARCHEN SUBJOINED LETTER THA;Mn;0;NSM;;;;;N;;;;; +11C9C;MARCHEN SUBJOINED LETTER DA;Mn;0;NSM;;;;;N;;;;; +11C9D;MARCHEN SUBJOINED LETTER NA;Mn;0;NSM;;;;;N;;;;; +11C9E;MARCHEN SUBJOINED LETTER PA;Mn;0;NSM;;;;;N;;;;; +11C9F;MARCHEN SUBJOINED LETTER PHA;Mn;0;NSM;;;;;N;;;;; +11CA0;MARCHEN SUBJOINED LETTER BA;Mn;0;NSM;;;;;N;;;;; +11CA1;MARCHEN SUBJOINED LETTER MA;Mn;0;NSM;;;;;N;;;;; +11CA2;MARCHEN SUBJOINED LETTER TSA;Mn;0;NSM;;;;;N;;;;; +11CA3;MARCHEN SUBJOINED LETTER TSHA;Mn;0;NSM;;;;;N;;;;; +11CA4;MARCHEN SUBJOINED LETTER DZA;Mn;0;NSM;;;;;N;;;;; +11CA5;MARCHEN SUBJOINED LETTER WA;Mn;0;NSM;;;;;N;;;;; +11CA6;MARCHEN SUBJOINED LETTER ZHA;Mn;0;NSM;;;;;N;;;;; +11CA7;MARCHEN SUBJOINED LETTER ZA;Mn;0;NSM;;;;;N;;;;; +11CA9;MARCHEN SUBJOINED LETTER YA;Mc;0;L;;;;;N;;;;; +11CAA;MARCHEN SUBJOINED LETTER RA;Mn;0;NSM;;;;;N;;;;; +11CAB;MARCHEN SUBJOINED LETTER LA;Mn;0;NSM;;;;;N;;;;; +11CAC;MARCHEN SUBJOINED LETTER SHA;Mn;0;NSM;;;;;N;;;;; +11CAD;MARCHEN SUBJOINED LETTER SA;Mn;0;NSM;;;;;N;;;;; +11CAE;MARCHEN SUBJOINED LETTER HA;Mn;0;NSM;;;;;N;;;;; +11CAF;MARCHEN SUBJOINED LETTER A;Mn;0;NSM;;;;;N;;;;; +11CB0;MARCHEN VOWEL SIGN AA;Mn;0;NSM;;;;;N;;;;; +11CB1;MARCHEN VOWEL SIGN I;Mc;0;L;;;;;N;;;;; +11CB2;MARCHEN VOWEL SIGN U;Mn;0;NSM;;;;;N;;;;; +11CB3;MARCHEN VOWEL SIGN E;Mn;0;NSM;;;;;N;;;;; +11CB4;MARCHEN VOWEL SIGN O;Mc;0;L;;;;;N;;;;; +11CB5;MARCHEN SIGN ANUSVARA;Mn;0;NSM;;;;;N;;;;; +11CB6;MARCHEN SIGN CANDRABINDU;Mn;0;NSM;;;;;N;;;;; 12000;CUNEIFORM SIGN A;Lo;0;L;;;;;N;;;;; 12001;CUNEIFORM SIGN A TIMES A;Lo;0;L;;;;;N;;;;; 12002;CUNEIFORM SIGN A TIMES BAD;Lo;0;L;;;;;N;;;;; @@ -23685,6 +24086,764 @@ FFFD;REPLACEMENT CHARACTER;So;0;ON;;;;;N;;;;; 16F9D;MIAO LETTER REFORMED TONE-5;Lm;0;L;;;;;N;;;;; 16F9E;MIAO LETTER REFORMED TONE-6;Lm;0;L;;;;;N;;;;; 16F9F;MIAO LETTER REFORMED TONE-8;Lm;0;L;;;;;N;;;;; +16FE0;TANGUT ITERATION MARK;Lm;0;L;;;;;N;;;;; +17000;;Lo;0;L;;;;;N;;;;; +187EC;;Lo;0;L;;;;;N;;;;; +18800;TANGUT COMPONENT-001;Lo;0;L;;;;;N;;;;; +18801;TANGUT COMPONENT-002;Lo;0;L;;;;;N;;;;; +18802;TANGUT COMPONENT-003;Lo;0;L;;;;;N;;;;; +18803;TANGUT COMPONENT-004;Lo;0;L;;;;;N;;;;; +18804;TANGUT COMPONENT-005;Lo;0;L;;;;;N;;;;; +18805;TANGUT COMPONENT-006;Lo;0;L;;;;;N;;;;; +18806;TANGUT COMPONENT-007;Lo;0;L;;;;;N;;;;; +18807;TANGUT COMPONENT-008;Lo;0;L;;;;;N;;;;; +18808;TANGUT COMPONENT-009;Lo;0;L;;;;;N;;;;; +18809;TANGUT COMPONENT-010;Lo;0;L;;;;;N;;;;; +1880A;TANGUT COMPONENT-011;Lo;0;L;;;;;N;;;;; +1880B;TANGUT COMPONENT-012;Lo;0;L;;;;;N;;;;; +1880C;TANGUT COMPONENT-013;Lo;0;L;;;;;N;;;;; +1880D;TANGUT COMPONENT-014;Lo;0;L;;;;;N;;;;; +1880E;TANGUT COMPONENT-015;Lo;0;L;;;;;N;;;;; +1880F;TANGUT COMPONENT-016;Lo;0;L;;;;;N;;;;; +18810;TANGUT COMPONENT-017;Lo;0;L;;;;;N;;;;; +18811;TANGUT COMPONENT-018;Lo;0;L;;;;;N;;;;; +18812;TANGUT COMPONENT-019;Lo;0;L;;;;;N;;;;; +18813;TANGUT COMPONENT-020;Lo;0;L;;;;;N;;;;; +18814;TANGUT COMPONENT-021;Lo;0;L;;;;;N;;;;; +18815;TANGUT COMPONENT-022;Lo;0;L;;;;;N;;;;; +18816;TANGUT COMPONENT-023;Lo;0;L;;;;;N;;;;; +18817;TANGUT COMPONENT-024;Lo;0;L;;;;;N;;;;; +18818;TANGUT COMPONENT-025;Lo;0;L;;;;;N;;;;; +18819;TANGUT COMPONENT-026;Lo;0;L;;;;;N;;;;; +1881A;TANGUT COMPONENT-027;Lo;0;L;;;;;N;;;;; +1881B;TANGUT COMPONENT-028;Lo;0;L;;;;;N;;;;; +1881C;TANGUT COMPONENT-029;Lo;0;L;;;;;N;;;;; +1881D;TANGUT COMPONENT-030;Lo;0;L;;;;;N;;;;; +1881E;TANGUT COMPONENT-031;Lo;0;L;;;;;N;;;;; +1881F;TANGUT COMPONENT-032;Lo;0;L;;;;;N;;;;; +18820;TANGUT COMPONENT-033;Lo;0;L;;;;;N;;;;; +18821;TANGUT COMPONENT-034;Lo;0;L;;;;;N;;;;; +18822;TANGUT COMPONENT-035;Lo;0;L;;;;;N;;;;; +18823;TANGUT COMPONENT-036;Lo;0;L;;;;;N;;;;; +18824;TANGUT COMPONENT-037;Lo;0;L;;;;;N;;;;; +18825;TANGUT COMPONENT-038;Lo;0;L;;;;;N;;;;; +18826;TANGUT COMPONENT-039;Lo;0;L;;;;;N;;;;; +18827;TANGUT COMPONENT-040;Lo;0;L;;;;;N;;;;; +18828;TANGUT COMPONENT-041;Lo;0;L;;;;;N;;;;; +18829;TANGUT COMPONENT-042;Lo;0;L;;;;;N;;;;; +1882A;TANGUT COMPONENT-043;Lo;0;L;;;;;N;;;;; +1882B;TANGUT COMPONENT-044;Lo;0;L;;;;;N;;;;; +1882C;TANGUT COMPONENT-045;Lo;0;L;;;;;N;;;;; +1882D;TANGUT COMPONENT-046;Lo;0;L;;;;;N;;;;; +1882E;TANGUT COMPONENT-047;Lo;0;L;;;;;N;;;;; +1882F;TANGUT COMPONENT-048;Lo;0;L;;;;;N;;;;; +18830;TANGUT COMPONENT-049;Lo;0;L;;;;;N;;;;; +18831;TANGUT COMPONENT-050;Lo;0;L;;;;;N;;;;; +18832;TANGUT COMPONENT-051;Lo;0;L;;;;;N;;;;; +18833;TANGUT COMPONENT-052;Lo;0;L;;;;;N;;;;; +18834;TANGUT COMPONENT-053;Lo;0;L;;;;;N;;;;; +18835;TANGUT COMPONENT-054;Lo;0;L;;;;;N;;;;; +18836;TANGUT COMPONENT-055;Lo;0;L;;;;;N;;;;; +18837;TANGUT COMPONENT-056;Lo;0;L;;;;;N;;;;; +18838;TANGUT COMPONENT-057;Lo;0;L;;;;;N;;;;; +18839;TANGUT COMPONENT-058;Lo;0;L;;;;;N;;;;; +1883A;TANGUT COMPONENT-059;Lo;0;L;;;;;N;;;;; +1883B;TANGUT COMPONENT-060;Lo;0;L;;;;;N;;;;; +1883C;TANGUT COMPONENT-061;Lo;0;L;;;;;N;;;;; +1883D;TANGUT COMPONENT-062;Lo;0;L;;;;;N;;;;; +1883E;TANGUT COMPONENT-063;Lo;0;L;;;;;N;;;;; +1883F;TANGUT COMPONENT-064;Lo;0;L;;;;;N;;;;; +18840;TANGUT COMPONENT-065;Lo;0;L;;;;;N;;;;; +18841;TANGUT COMPONENT-066;Lo;0;L;;;;;N;;;;; +18842;TANGUT COMPONENT-067;Lo;0;L;;;;;N;;;;; +18843;TANGUT COMPONENT-068;Lo;0;L;;;;;N;;;;; +18844;TANGUT COMPONENT-069;Lo;0;L;;;;;N;;;;; +18845;TANGUT COMPONENT-070;Lo;0;L;;;;;N;;;;; +18846;TANGUT COMPONENT-071;Lo;0;L;;;;;N;;;;; +18847;TANGUT COMPONENT-072;Lo;0;L;;;;;N;;;;; +18848;TANGUT COMPONENT-073;Lo;0;L;;;;;N;;;;; +18849;TANGUT COMPONENT-074;Lo;0;L;;;;;N;;;;; +1884A;TANGUT COMPONENT-075;Lo;0;L;;;;;N;;;;; +1884B;TANGUT COMPONENT-076;Lo;0;L;;;;;N;;;;; +1884C;TANGUT COMPONENT-077;Lo;0;L;;;;;N;;;;; +1884D;TANGUT COMPONENT-078;Lo;0;L;;;;;N;;;;; +1884E;TANGUT COMPONENT-079;Lo;0;L;;;;;N;;;;; +1884F;TANGUT COMPONENT-080;Lo;0;L;;;;;N;;;;; +18850;TANGUT COMPONENT-081;Lo;0;L;;;;;N;;;;; +18851;TANGUT COMPONENT-082;Lo;0;L;;;;;N;;;;; +18852;TANGUT COMPONENT-083;Lo;0;L;;;;;N;;;;; +18853;TANGUT COMPONENT-084;Lo;0;L;;;;;N;;;;; +18854;TANGUT COMPONENT-085;Lo;0;L;;;;;N;;;;; +18855;TANGUT COMPONENT-086;Lo;0;L;;;;;N;;;;; +18856;TANGUT COMPONENT-087;Lo;0;L;;;;;N;;;;; +18857;TANGUT COMPONENT-088;Lo;0;L;;;;;N;;;;; +18858;TANGUT COMPONENT-089;Lo;0;L;;;;;N;;;;; +18859;TANGUT COMPONENT-090;Lo;0;L;;;;;N;;;;; +1885A;TANGUT COMPONENT-091;Lo;0;L;;;;;N;;;;; +1885B;TANGUT COMPONENT-092;Lo;0;L;;;;;N;;;;; +1885C;TANGUT COMPONENT-093;Lo;0;L;;;;;N;;;;; +1885D;TANGUT COMPONENT-094;Lo;0;L;;;;;N;;;;; +1885E;TANGUT COMPONENT-095;Lo;0;L;;;;;N;;;;; +1885F;TANGUT COMPONENT-096;Lo;0;L;;;;;N;;;;; +18860;TANGUT COMPONENT-097;Lo;0;L;;;;;N;;;;; +18861;TANGUT COMPONENT-098;Lo;0;L;;;;;N;;;;; +18862;TANGUT COMPONENT-099;Lo;0;L;;;;;N;;;;; +18863;TANGUT COMPONENT-100;Lo;0;L;;;;;N;;;;; +18864;TANGUT COMPONENT-101;Lo;0;L;;;;;N;;;;; +18865;TANGUT COMPONENT-102;Lo;0;L;;;;;N;;;;; +18866;TANGUT COMPONENT-103;Lo;0;L;;;;;N;;;;; +18867;TANGUT COMPONENT-104;Lo;0;L;;;;;N;;;;; +18868;TANGUT COMPONENT-105;Lo;0;L;;;;;N;;;;; +18869;TANGUT COMPONENT-106;Lo;0;L;;;;;N;;;;; +1886A;TANGUT COMPONENT-107;Lo;0;L;;;;;N;;;;; +1886B;TANGUT COMPONENT-108;Lo;0;L;;;;;N;;;;; +1886C;TANGUT COMPONENT-109;Lo;0;L;;;;;N;;;;; +1886D;TANGUT COMPONENT-110;Lo;0;L;;;;;N;;;;; +1886E;TANGUT COMPONENT-111;Lo;0;L;;;;;N;;;;; +1886F;TANGUT COMPONENT-112;Lo;0;L;;;;;N;;;;; +18870;TANGUT COMPONENT-113;Lo;0;L;;;;;N;;;;; +18871;TANGUT COMPONENT-114;Lo;0;L;;;;;N;;;;; +18872;TANGUT COMPONENT-115;Lo;0;L;;;;;N;;;;; +18873;TANGUT COMPONENT-116;Lo;0;L;;;;;N;;;;; +18874;TANGUT COMPONENT-117;Lo;0;L;;;;;N;;;;; +18875;TANGUT COMPONENT-118;Lo;0;L;;;;;N;;;;; +18876;TANGUT COMPONENT-119;Lo;0;L;;;;;N;;;;; +18877;TANGUT COMPONENT-120;Lo;0;L;;;;;N;;;;; +18878;TANGUT COMPONENT-121;Lo;0;L;;;;;N;;;;; +18879;TANGUT COMPONENT-122;Lo;0;L;;;;;N;;;;; +1887A;TANGUT COMPONENT-123;Lo;0;L;;;;;N;;;;; +1887B;TANGUT COMPONENT-124;Lo;0;L;;;;;N;;;;; +1887C;TANGUT COMPONENT-125;Lo;0;L;;;;;N;;;;; +1887D;TANGUT COMPONENT-126;Lo;0;L;;;;;N;;;;; +1887E;TANGUT COMPONENT-127;Lo;0;L;;;;;N;;;;; +1887F;TANGUT COMPONENT-128;Lo;0;L;;;;;N;;;;; +18880;TANGUT COMPONENT-129;Lo;0;L;;;;;N;;;;; +18881;TANGUT COMPONENT-130;Lo;0;L;;;;;N;;;;; +18882;TANGUT COMPONENT-131;Lo;0;L;;;;;N;;;;; +18883;TANGUT COMPONENT-132;Lo;0;L;;;;;N;;;;; +18884;TANGUT COMPONENT-133;Lo;0;L;;;;;N;;;;; +18885;TANGUT COMPONENT-134;Lo;0;L;;;;;N;;;;; +18886;TANGUT COMPONENT-135;Lo;0;L;;;;;N;;;;; +18887;TANGUT COMPONENT-136;Lo;0;L;;;;;N;;;;; +18888;TANGUT COMPONENT-137;Lo;0;L;;;;;N;;;;; +18889;TANGUT COMPONENT-138;Lo;0;L;;;;;N;;;;; +1888A;TANGUT COMPONENT-139;Lo;0;L;;;;;N;;;;; +1888B;TANGUT COMPONENT-140;Lo;0;L;;;;;N;;;;; +1888C;TANGUT COMPONENT-141;Lo;0;L;;;;;N;;;;; +1888D;TANGUT COMPONENT-142;Lo;0;L;;;;;N;;;;; +1888E;TANGUT COMPONENT-143;Lo;0;L;;;;;N;;;;; +1888F;TANGUT COMPONENT-144;Lo;0;L;;;;;N;;;;; +18890;TANGUT COMPONENT-145;Lo;0;L;;;;;N;;;;; +18891;TANGUT COMPONENT-146;Lo;0;L;;;;;N;;;;; +18892;TANGUT COMPONENT-147;Lo;0;L;;;;;N;;;;; +18893;TANGUT COMPONENT-148;Lo;0;L;;;;;N;;;;; +18894;TANGUT COMPONENT-149;Lo;0;L;;;;;N;;;;; +18895;TANGUT COMPONENT-150;Lo;0;L;;;;;N;;;;; +18896;TANGUT COMPONENT-151;Lo;0;L;;;;;N;;;;; +18897;TANGUT COMPONENT-152;Lo;0;L;;;;;N;;;;; +18898;TANGUT COMPONENT-153;Lo;0;L;;;;;N;;;;; +18899;TANGUT COMPONENT-154;Lo;0;L;;;;;N;;;;; +1889A;TANGUT COMPONENT-155;Lo;0;L;;;;;N;;;;; +1889B;TANGUT COMPONENT-156;Lo;0;L;;;;;N;;;;; +1889C;TANGUT COMPONENT-157;Lo;0;L;;;;;N;;;;; +1889D;TANGUT COMPONENT-158;Lo;0;L;;;;;N;;;;; +1889E;TANGUT COMPONENT-159;Lo;0;L;;;;;N;;;;; +1889F;TANGUT COMPONENT-160;Lo;0;L;;;;;N;;;;; +188A0;TANGUT COMPONENT-161;Lo;0;L;;;;;N;;;;; +188A1;TANGUT COMPONENT-162;Lo;0;L;;;;;N;;;;; +188A2;TANGUT COMPONENT-163;Lo;0;L;;;;;N;;;;; +188A3;TANGUT COMPONENT-164;Lo;0;L;;;;;N;;;;; +188A4;TANGUT COMPONENT-165;Lo;0;L;;;;;N;;;;; +188A5;TANGUT COMPONENT-166;Lo;0;L;;;;;N;;;;; +188A6;TANGUT COMPONENT-167;Lo;0;L;;;;;N;;;;; +188A7;TANGUT COMPONENT-168;Lo;0;L;;;;;N;;;;; +188A8;TANGUT COMPONENT-169;Lo;0;L;;;;;N;;;;; +188A9;TANGUT COMPONENT-170;Lo;0;L;;;;;N;;;;; +188AA;TANGUT COMPONENT-171;Lo;0;L;;;;;N;;;;; +188AB;TANGUT COMPONENT-172;Lo;0;L;;;;;N;;;;; +188AC;TANGUT COMPONENT-173;Lo;0;L;;;;;N;;;;; +188AD;TANGUT COMPONENT-174;Lo;0;L;;;;;N;;;;; +188AE;TANGUT COMPONENT-175;Lo;0;L;;;;;N;;;;; +188AF;TANGUT COMPONENT-176;Lo;0;L;;;;;N;;;;; +188B0;TANGUT COMPONENT-177;Lo;0;L;;;;;N;;;;; +188B1;TANGUT COMPONENT-178;Lo;0;L;;;;;N;;;;; +188B2;TANGUT COMPONENT-179;Lo;0;L;;;;;N;;;;; +188B3;TANGUT COMPONENT-180;Lo;0;L;;;;;N;;;;; +188B4;TANGUT COMPONENT-181;Lo;0;L;;;;;N;;;;; +188B5;TANGUT COMPONENT-182;Lo;0;L;;;;;N;;;;; +188B6;TANGUT COMPONENT-183;Lo;0;L;;;;;N;;;;; +188B7;TANGUT COMPONENT-184;Lo;0;L;;;;;N;;;;; +188B8;TANGUT COMPONENT-185;Lo;0;L;;;;;N;;;;; +188B9;TANGUT COMPONENT-186;Lo;0;L;;;;;N;;;;; +188BA;TANGUT COMPONENT-187;Lo;0;L;;;;;N;;;;; +188BB;TANGUT COMPONENT-188;Lo;0;L;;;;;N;;;;; +188BC;TANGUT COMPONENT-189;Lo;0;L;;;;;N;;;;; +188BD;TANGUT COMPONENT-190;Lo;0;L;;;;;N;;;;; +188BE;TANGUT COMPONENT-191;Lo;0;L;;;;;N;;;;; +188BF;TANGUT COMPONENT-192;Lo;0;L;;;;;N;;;;; +188C0;TANGUT COMPONENT-193;Lo;0;L;;;;;N;;;;; +188C1;TANGUT COMPONENT-194;Lo;0;L;;;;;N;;;;; +188C2;TANGUT COMPONENT-195;Lo;0;L;;;;;N;;;;; +188C3;TANGUT COMPONENT-196;Lo;0;L;;;;;N;;;;; +188C4;TANGUT COMPONENT-197;Lo;0;L;;;;;N;;;;; +188C5;TANGUT COMPONENT-198;Lo;0;L;;;;;N;;;;; +188C6;TANGUT COMPONENT-199;Lo;0;L;;;;;N;;;;; +188C7;TANGUT COMPONENT-200;Lo;0;L;;;;;N;;;;; +188C8;TANGUT COMPONENT-201;Lo;0;L;;;;;N;;;;; +188C9;TANGUT COMPONENT-202;Lo;0;L;;;;;N;;;;; +188CA;TANGUT COMPONENT-203;Lo;0;L;;;;;N;;;;; +188CB;TANGUT COMPONENT-204;Lo;0;L;;;;;N;;;;; +188CC;TANGUT COMPONENT-205;Lo;0;L;;;;;N;;;;; +188CD;TANGUT COMPONENT-206;Lo;0;L;;;;;N;;;;; +188CE;TANGUT COMPONENT-207;Lo;0;L;;;;;N;;;;; +188CF;TANGUT COMPONENT-208;Lo;0;L;;;;;N;;;;; +188D0;TANGUT COMPONENT-209;Lo;0;L;;;;;N;;;;; +188D1;TANGUT COMPONENT-210;Lo;0;L;;;;;N;;;;; +188D2;TANGUT COMPONENT-211;Lo;0;L;;;;;N;;;;; +188D3;TANGUT COMPONENT-212;Lo;0;L;;;;;N;;;;; +188D4;TANGUT COMPONENT-213;Lo;0;L;;;;;N;;;;; +188D5;TANGUT COMPONENT-214;Lo;0;L;;;;;N;;;;; +188D6;TANGUT COMPONENT-215;Lo;0;L;;;;;N;;;;; +188D7;TANGUT COMPONENT-216;Lo;0;L;;;;;N;;;;; +188D8;TANGUT COMPONENT-217;Lo;0;L;;;;;N;;;;; +188D9;TANGUT COMPONENT-218;Lo;0;L;;;;;N;;;;; +188DA;TANGUT COMPONENT-219;Lo;0;L;;;;;N;;;;; +188DB;TANGUT COMPONENT-220;Lo;0;L;;;;;N;;;;; +188DC;TANGUT COMPONENT-221;Lo;0;L;;;;;N;;;;; +188DD;TANGUT COMPONENT-222;Lo;0;L;;;;;N;;;;; +188DE;TANGUT COMPONENT-223;Lo;0;L;;;;;N;;;;; +188DF;TANGUT COMPONENT-224;Lo;0;L;;;;;N;;;;; +188E0;TANGUT COMPONENT-225;Lo;0;L;;;;;N;;;;; +188E1;TANGUT COMPONENT-226;Lo;0;L;;;;;N;;;;; +188E2;TANGUT COMPONENT-227;Lo;0;L;;;;;N;;;;; +188E3;TANGUT COMPONENT-228;Lo;0;L;;;;;N;;;;; +188E4;TANGUT COMPONENT-229;Lo;0;L;;;;;N;;;;; +188E5;TANGUT COMPONENT-230;Lo;0;L;;;;;N;;;;; +188E6;TANGUT COMPONENT-231;Lo;0;L;;;;;N;;;;; +188E7;TANGUT COMPONENT-232;Lo;0;L;;;;;N;;;;; +188E8;TANGUT COMPONENT-233;Lo;0;L;;;;;N;;;;; +188E9;TANGUT COMPONENT-234;Lo;0;L;;;;;N;;;;; +188EA;TANGUT COMPONENT-235;Lo;0;L;;;;;N;;;;; +188EB;TANGUT COMPONENT-236;Lo;0;L;;;;;N;;;;; +188EC;TANGUT COMPONENT-237;Lo;0;L;;;;;N;;;;; +188ED;TANGUT COMPONENT-238;Lo;0;L;;;;;N;;;;; +188EE;TANGUT COMPONENT-239;Lo;0;L;;;;;N;;;;; +188EF;TANGUT COMPONENT-240;Lo;0;L;;;;;N;;;;; +188F0;TANGUT COMPONENT-241;Lo;0;L;;;;;N;;;;; +188F1;TANGUT COMPONENT-242;Lo;0;L;;;;;N;;;;; +188F2;TANGUT COMPONENT-243;Lo;0;L;;;;;N;;;;; +188F3;TANGUT COMPONENT-244;Lo;0;L;;;;;N;;;;; +188F4;TANGUT COMPONENT-245;Lo;0;L;;;;;N;;;;; +188F5;TANGUT COMPONENT-246;Lo;0;L;;;;;N;;;;; +188F6;TANGUT COMPONENT-247;Lo;0;L;;;;;N;;;;; +188F7;TANGUT COMPONENT-248;Lo;0;L;;;;;N;;;;; +188F8;TANGUT COMPONENT-249;Lo;0;L;;;;;N;;;;; +188F9;TANGUT COMPONENT-250;Lo;0;L;;;;;N;;;;; +188FA;TANGUT COMPONENT-251;Lo;0;L;;;;;N;;;;; +188FB;TANGUT COMPONENT-252;Lo;0;L;;;;;N;;;;; +188FC;TANGUT COMPONENT-253;Lo;0;L;;;;;N;;;;; +188FD;TANGUT COMPONENT-254;Lo;0;L;;;;;N;;;;; +188FE;TANGUT COMPONENT-255;Lo;0;L;;;;;N;;;;; +188FF;TANGUT COMPONENT-256;Lo;0;L;;;;;N;;;;; +18900;TANGUT COMPONENT-257;Lo;0;L;;;;;N;;;;; +18901;TANGUT COMPONENT-258;Lo;0;L;;;;;N;;;;; +18902;TANGUT COMPONENT-259;Lo;0;L;;;;;N;;;;; +18903;TANGUT COMPONENT-260;Lo;0;L;;;;;N;;;;; +18904;TANGUT COMPONENT-261;Lo;0;L;;;;;N;;;;; +18905;TANGUT COMPONENT-262;Lo;0;L;;;;;N;;;;; +18906;TANGUT COMPONENT-263;Lo;0;L;;;;;N;;;;; +18907;TANGUT COMPONENT-264;Lo;0;L;;;;;N;;;;; +18908;TANGUT COMPONENT-265;Lo;0;L;;;;;N;;;;; +18909;TANGUT COMPONENT-266;Lo;0;L;;;;;N;;;;; +1890A;TANGUT COMPONENT-267;Lo;0;L;;;;;N;;;;; +1890B;TANGUT COMPONENT-268;Lo;0;L;;;;;N;;;;; +1890C;TANGUT COMPONENT-269;Lo;0;L;;;;;N;;;;; +1890D;TANGUT COMPONENT-270;Lo;0;L;;;;;N;;;;; +1890E;TANGUT COMPONENT-271;Lo;0;L;;;;;N;;;;; +1890F;TANGUT COMPONENT-272;Lo;0;L;;;;;N;;;;; +18910;TANGUT COMPONENT-273;Lo;0;L;;;;;N;;;;; +18911;TANGUT COMPONENT-274;Lo;0;L;;;;;N;;;;; +18912;TANGUT COMPONENT-275;Lo;0;L;;;;;N;;;;; +18913;TANGUT COMPONENT-276;Lo;0;L;;;;;N;;;;; +18914;TANGUT COMPONENT-277;Lo;0;L;;;;;N;;;;; +18915;TANGUT COMPONENT-278;Lo;0;L;;;;;N;;;;; +18916;TANGUT COMPONENT-279;Lo;0;L;;;;;N;;;;; +18917;TANGUT COMPONENT-280;Lo;0;L;;;;;N;;;;; +18918;TANGUT COMPONENT-281;Lo;0;L;;;;;N;;;;; +18919;TANGUT COMPONENT-282;Lo;0;L;;;;;N;;;;; +1891A;TANGUT COMPONENT-283;Lo;0;L;;;;;N;;;;; +1891B;TANGUT COMPONENT-284;Lo;0;L;;;;;N;;;;; +1891C;TANGUT COMPONENT-285;Lo;0;L;;;;;N;;;;; +1891D;TANGUT COMPONENT-286;Lo;0;L;;;;;N;;;;; +1891E;TANGUT COMPONENT-287;Lo;0;L;;;;;N;;;;; +1891F;TANGUT COMPONENT-288;Lo;0;L;;;;;N;;;;; +18920;TANGUT COMPONENT-289;Lo;0;L;;;;;N;;;;; +18921;TANGUT COMPONENT-290;Lo;0;L;;;;;N;;;;; +18922;TANGUT COMPONENT-291;Lo;0;L;;;;;N;;;;; +18923;TANGUT COMPONENT-292;Lo;0;L;;;;;N;;;;; +18924;TANGUT COMPONENT-293;Lo;0;L;;;;;N;;;;; +18925;TANGUT COMPONENT-294;Lo;0;L;;;;;N;;;;; +18926;TANGUT COMPONENT-295;Lo;0;L;;;;;N;;;;; +18927;TANGUT COMPONENT-296;Lo;0;L;;;;;N;;;;; +18928;TANGUT COMPONENT-297;Lo;0;L;;;;;N;;;;; +18929;TANGUT COMPONENT-298;Lo;0;L;;;;;N;;;;; +1892A;TANGUT COMPONENT-299;Lo;0;L;;;;;N;;;;; +1892B;TANGUT COMPONENT-300;Lo;0;L;;;;;N;;;;; +1892C;TANGUT COMPONENT-301;Lo;0;L;;;;;N;;;;; +1892D;TANGUT COMPONENT-302;Lo;0;L;;;;;N;;;;; +1892E;TANGUT COMPONENT-303;Lo;0;L;;;;;N;;;;; +1892F;TANGUT COMPONENT-304;Lo;0;L;;;;;N;;;;; +18930;TANGUT COMPONENT-305;Lo;0;L;;;;;N;;;;; +18931;TANGUT COMPONENT-306;Lo;0;L;;;;;N;;;;; +18932;TANGUT COMPONENT-307;Lo;0;L;;;;;N;;;;; +18933;TANGUT COMPONENT-308;Lo;0;L;;;;;N;;;;; +18934;TANGUT COMPONENT-309;Lo;0;L;;;;;N;;;;; +18935;TANGUT COMPONENT-310;Lo;0;L;;;;;N;;;;; +18936;TANGUT COMPONENT-311;Lo;0;L;;;;;N;;;;; +18937;TANGUT COMPONENT-312;Lo;0;L;;;;;N;;;;; +18938;TANGUT COMPONENT-313;Lo;0;L;;;;;N;;;;; +18939;TANGUT COMPONENT-314;Lo;0;L;;;;;N;;;;; +1893A;TANGUT COMPONENT-315;Lo;0;L;;;;;N;;;;; +1893B;TANGUT COMPONENT-316;Lo;0;L;;;;;N;;;;; +1893C;TANGUT COMPONENT-317;Lo;0;L;;;;;N;;;;; +1893D;TANGUT COMPONENT-318;Lo;0;L;;;;;N;;;;; +1893E;TANGUT COMPONENT-319;Lo;0;L;;;;;N;;;;; +1893F;TANGUT COMPONENT-320;Lo;0;L;;;;;N;;;;; +18940;TANGUT COMPONENT-321;Lo;0;L;;;;;N;;;;; +18941;TANGUT COMPONENT-322;Lo;0;L;;;;;N;;;;; +18942;TANGUT COMPONENT-323;Lo;0;L;;;;;N;;;;; +18943;TANGUT COMPONENT-324;Lo;0;L;;;;;N;;;;; +18944;TANGUT COMPONENT-325;Lo;0;L;;;;;N;;;;; +18945;TANGUT COMPONENT-326;Lo;0;L;;;;;N;;;;; +18946;TANGUT COMPONENT-327;Lo;0;L;;;;;N;;;;; +18947;TANGUT COMPONENT-328;Lo;0;L;;;;;N;;;;; +18948;TANGUT COMPONENT-329;Lo;0;L;;;;;N;;;;; +18949;TANGUT COMPONENT-330;Lo;0;L;;;;;N;;;;; +1894A;TANGUT COMPONENT-331;Lo;0;L;;;;;N;;;;; +1894B;TANGUT COMPONENT-332;Lo;0;L;;;;;N;;;;; +1894C;TANGUT COMPONENT-333;Lo;0;L;;;;;N;;;;; +1894D;TANGUT COMPONENT-334;Lo;0;L;;;;;N;;;;; +1894E;TANGUT COMPONENT-335;Lo;0;L;;;;;N;;;;; +1894F;TANGUT COMPONENT-336;Lo;0;L;;;;;N;;;;; +18950;TANGUT COMPONENT-337;Lo;0;L;;;;;N;;;;; +18951;TANGUT COMPONENT-338;Lo;0;L;;;;;N;;;;; +18952;TANGUT COMPONENT-339;Lo;0;L;;;;;N;;;;; +18953;TANGUT COMPONENT-340;Lo;0;L;;;;;N;;;;; +18954;TANGUT COMPONENT-341;Lo;0;L;;;;;N;;;;; +18955;TANGUT COMPONENT-342;Lo;0;L;;;;;N;;;;; +18956;TANGUT COMPONENT-343;Lo;0;L;;;;;N;;;;; +18957;TANGUT COMPONENT-344;Lo;0;L;;;;;N;;;;; +18958;TANGUT COMPONENT-345;Lo;0;L;;;;;N;;;;; +18959;TANGUT COMPONENT-346;Lo;0;L;;;;;N;;;;; +1895A;TANGUT COMPONENT-347;Lo;0;L;;;;;N;;;;; +1895B;TANGUT COMPONENT-348;Lo;0;L;;;;;N;;;;; +1895C;TANGUT COMPONENT-349;Lo;0;L;;;;;N;;;;; +1895D;TANGUT COMPONENT-350;Lo;0;L;;;;;N;;;;; +1895E;TANGUT COMPONENT-351;Lo;0;L;;;;;N;;;;; +1895F;TANGUT COMPONENT-352;Lo;0;L;;;;;N;;;;; +18960;TANGUT COMPONENT-353;Lo;0;L;;;;;N;;;;; +18961;TANGUT COMPONENT-354;Lo;0;L;;;;;N;;;;; +18962;TANGUT COMPONENT-355;Lo;0;L;;;;;N;;;;; +18963;TANGUT COMPONENT-356;Lo;0;L;;;;;N;;;;; +18964;TANGUT COMPONENT-357;Lo;0;L;;;;;N;;;;; +18965;TANGUT COMPONENT-358;Lo;0;L;;;;;N;;;;; +18966;TANGUT COMPONENT-359;Lo;0;L;;;;;N;;;;; +18967;TANGUT COMPONENT-360;Lo;0;L;;;;;N;;;;; +18968;TANGUT COMPONENT-361;Lo;0;L;;;;;N;;;;; +18969;TANGUT COMPONENT-362;Lo;0;L;;;;;N;;;;; +1896A;TANGUT COMPONENT-363;Lo;0;L;;;;;N;;;;; +1896B;TANGUT COMPONENT-364;Lo;0;L;;;;;N;;;;; +1896C;TANGUT COMPONENT-365;Lo;0;L;;;;;N;;;;; +1896D;TANGUT COMPONENT-366;Lo;0;L;;;;;N;;;;; +1896E;TANGUT COMPONENT-367;Lo;0;L;;;;;N;;;;; +1896F;TANGUT COMPONENT-368;Lo;0;L;;;;;N;;;;; +18970;TANGUT COMPONENT-369;Lo;0;L;;;;;N;;;;; +18971;TANGUT COMPONENT-370;Lo;0;L;;;;;N;;;;; +18972;TANGUT COMPONENT-371;Lo;0;L;;;;;N;;;;; +18973;TANGUT COMPONENT-372;Lo;0;L;;;;;N;;;;; +18974;TANGUT COMPONENT-373;Lo;0;L;;;;;N;;;;; +18975;TANGUT COMPONENT-374;Lo;0;L;;;;;N;;;;; +18976;TANGUT COMPONENT-375;Lo;0;L;;;;;N;;;;; +18977;TANGUT COMPONENT-376;Lo;0;L;;;;;N;;;;; +18978;TANGUT COMPONENT-377;Lo;0;L;;;;;N;;;;; +18979;TANGUT COMPONENT-378;Lo;0;L;;;;;N;;;;; +1897A;TANGUT COMPONENT-379;Lo;0;L;;;;;N;;;;; +1897B;TANGUT COMPONENT-380;Lo;0;L;;;;;N;;;;; +1897C;TANGUT COMPONENT-381;Lo;0;L;;;;;N;;;;; +1897D;TANGUT COMPONENT-382;Lo;0;L;;;;;N;;;;; +1897E;TANGUT COMPONENT-383;Lo;0;L;;;;;N;;;;; +1897F;TANGUT COMPONENT-384;Lo;0;L;;;;;N;;;;; +18980;TANGUT COMPONENT-385;Lo;0;L;;;;;N;;;;; +18981;TANGUT COMPONENT-386;Lo;0;L;;;;;N;;;;; +18982;TANGUT COMPONENT-387;Lo;0;L;;;;;N;;;;; +18983;TANGUT COMPONENT-388;Lo;0;L;;;;;N;;;;; +18984;TANGUT COMPONENT-389;Lo;0;L;;;;;N;;;;; +18985;TANGUT COMPONENT-390;Lo;0;L;;;;;N;;;;; +18986;TANGUT COMPONENT-391;Lo;0;L;;;;;N;;;;; +18987;TANGUT COMPONENT-392;Lo;0;L;;;;;N;;;;; +18988;TANGUT COMPONENT-393;Lo;0;L;;;;;N;;;;; +18989;TANGUT COMPONENT-394;Lo;0;L;;;;;N;;;;; +1898A;TANGUT COMPONENT-395;Lo;0;L;;;;;N;;;;; +1898B;TANGUT COMPONENT-396;Lo;0;L;;;;;N;;;;; +1898C;TANGUT COMPONENT-397;Lo;0;L;;;;;N;;;;; +1898D;TANGUT COMPONENT-398;Lo;0;L;;;;;N;;;;; +1898E;TANGUT COMPONENT-399;Lo;0;L;;;;;N;;;;; +1898F;TANGUT COMPONENT-400;Lo;0;L;;;;;N;;;;; +18990;TANGUT COMPONENT-401;Lo;0;L;;;;;N;;;;; +18991;TANGUT COMPONENT-402;Lo;0;L;;;;;N;;;;; +18992;TANGUT COMPONENT-403;Lo;0;L;;;;;N;;;;; +18993;TANGUT COMPONENT-404;Lo;0;L;;;;;N;;;;; +18994;TANGUT COMPONENT-405;Lo;0;L;;;;;N;;;;; +18995;TANGUT COMPONENT-406;Lo;0;L;;;;;N;;;;; +18996;TANGUT COMPONENT-407;Lo;0;L;;;;;N;;;;; +18997;TANGUT COMPONENT-408;Lo;0;L;;;;;N;;;;; +18998;TANGUT COMPONENT-409;Lo;0;L;;;;;N;;;;; +18999;TANGUT COMPONENT-410;Lo;0;L;;;;;N;;;;; +1899A;TANGUT COMPONENT-411;Lo;0;L;;;;;N;;;;; +1899B;TANGUT COMPONENT-412;Lo;0;L;;;;;N;;;;; +1899C;TANGUT COMPONENT-413;Lo;0;L;;;;;N;;;;; +1899D;TANGUT COMPONENT-414;Lo;0;L;;;;;N;;;;; +1899E;TANGUT COMPONENT-415;Lo;0;L;;;;;N;;;;; +1899F;TANGUT COMPONENT-416;Lo;0;L;;;;;N;;;;; +189A0;TANGUT COMPONENT-417;Lo;0;L;;;;;N;;;;; +189A1;TANGUT COMPONENT-418;Lo;0;L;;;;;N;;;;; +189A2;TANGUT COMPONENT-419;Lo;0;L;;;;;N;;;;; +189A3;TANGUT COMPONENT-420;Lo;0;L;;;;;N;;;;; +189A4;TANGUT COMPONENT-421;Lo;0;L;;;;;N;;;;; +189A5;TANGUT COMPONENT-422;Lo;0;L;;;;;N;;;;; +189A6;TANGUT COMPONENT-423;Lo;0;L;;;;;N;;;;; +189A7;TANGUT COMPONENT-424;Lo;0;L;;;;;N;;;;; +189A8;TANGUT COMPONENT-425;Lo;0;L;;;;;N;;;;; +189A9;TANGUT COMPONENT-426;Lo;0;L;;;;;N;;;;; +189AA;TANGUT COMPONENT-427;Lo;0;L;;;;;N;;;;; +189AB;TANGUT COMPONENT-428;Lo;0;L;;;;;N;;;;; +189AC;TANGUT COMPONENT-429;Lo;0;L;;;;;N;;;;; +189AD;TANGUT COMPONENT-430;Lo;0;L;;;;;N;;;;; +189AE;TANGUT COMPONENT-431;Lo;0;L;;;;;N;;;;; +189AF;TANGUT COMPONENT-432;Lo;0;L;;;;;N;;;;; +189B0;TANGUT COMPONENT-433;Lo;0;L;;;;;N;;;;; +189B1;TANGUT COMPONENT-434;Lo;0;L;;;;;N;;;;; +189B2;TANGUT COMPONENT-435;Lo;0;L;;;;;N;;;;; +189B3;TANGUT COMPONENT-436;Lo;0;L;;;;;N;;;;; +189B4;TANGUT COMPONENT-437;Lo;0;L;;;;;N;;;;; +189B5;TANGUT COMPONENT-438;Lo;0;L;;;;;N;;;;; +189B6;TANGUT COMPONENT-439;Lo;0;L;;;;;N;;;;; +189B7;TANGUT COMPONENT-440;Lo;0;L;;;;;N;;;;; +189B8;TANGUT COMPONENT-441;Lo;0;L;;;;;N;;;;; +189B9;TANGUT COMPONENT-442;Lo;0;L;;;;;N;;;;; +189BA;TANGUT COMPONENT-443;Lo;0;L;;;;;N;;;;; +189BB;TANGUT COMPONENT-444;Lo;0;L;;;;;N;;;;; +189BC;TANGUT COMPONENT-445;Lo;0;L;;;;;N;;;;; +189BD;TANGUT COMPONENT-446;Lo;0;L;;;;;N;;;;; +189BE;TANGUT COMPONENT-447;Lo;0;L;;;;;N;;;;; +189BF;TANGUT COMPONENT-448;Lo;0;L;;;;;N;;;;; +189C0;TANGUT COMPONENT-449;Lo;0;L;;;;;N;;;;; +189C1;TANGUT COMPONENT-450;Lo;0;L;;;;;N;;;;; +189C2;TANGUT COMPONENT-451;Lo;0;L;;;;;N;;;;; +189C3;TANGUT COMPONENT-452;Lo;0;L;;;;;N;;;;; +189C4;TANGUT COMPONENT-453;Lo;0;L;;;;;N;;;;; +189C5;TANGUT COMPONENT-454;Lo;0;L;;;;;N;;;;; +189C6;TANGUT COMPONENT-455;Lo;0;L;;;;;N;;;;; +189C7;TANGUT COMPONENT-456;Lo;0;L;;;;;N;;;;; +189C8;TANGUT COMPONENT-457;Lo;0;L;;;;;N;;;;; +189C9;TANGUT COMPONENT-458;Lo;0;L;;;;;N;;;;; +189CA;TANGUT COMPONENT-459;Lo;0;L;;;;;N;;;;; +189CB;TANGUT COMPONENT-460;Lo;0;L;;;;;N;;;;; +189CC;TANGUT COMPONENT-461;Lo;0;L;;;;;N;;;;; +189CD;TANGUT COMPONENT-462;Lo;0;L;;;;;N;;;;; +189CE;TANGUT COMPONENT-463;Lo;0;L;;;;;N;;;;; +189CF;TANGUT COMPONENT-464;Lo;0;L;;;;;N;;;;; +189D0;TANGUT COMPONENT-465;Lo;0;L;;;;;N;;;;; +189D1;TANGUT COMPONENT-466;Lo;0;L;;;;;N;;;;; +189D2;TANGUT COMPONENT-467;Lo;0;L;;;;;N;;;;; +189D3;TANGUT COMPONENT-468;Lo;0;L;;;;;N;;;;; +189D4;TANGUT COMPONENT-469;Lo;0;L;;;;;N;;;;; +189D5;TANGUT COMPONENT-470;Lo;0;L;;;;;N;;;;; +189D6;TANGUT COMPONENT-471;Lo;0;L;;;;;N;;;;; +189D7;TANGUT COMPONENT-472;Lo;0;L;;;;;N;;;;; +189D8;TANGUT COMPONENT-473;Lo;0;L;;;;;N;;;;; +189D9;TANGUT COMPONENT-474;Lo;0;L;;;;;N;;;;; +189DA;TANGUT COMPONENT-475;Lo;0;L;;;;;N;;;;; +189DB;TANGUT COMPONENT-476;Lo;0;L;;;;;N;;;;; +189DC;TANGUT COMPONENT-477;Lo;0;L;;;;;N;;;;; +189DD;TANGUT COMPONENT-478;Lo;0;L;;;;;N;;;;; +189DE;TANGUT COMPONENT-479;Lo;0;L;;;;;N;;;;; +189DF;TANGUT COMPONENT-480;Lo;0;L;;;;;N;;;;; +189E0;TANGUT COMPONENT-481;Lo;0;L;;;;;N;;;;; +189E1;TANGUT COMPONENT-482;Lo;0;L;;;;;N;;;;; +189E2;TANGUT COMPONENT-483;Lo;0;L;;;;;N;;;;; +189E3;TANGUT COMPONENT-484;Lo;0;L;;;;;N;;;;; +189E4;TANGUT COMPONENT-485;Lo;0;L;;;;;N;;;;; +189E5;TANGUT COMPONENT-486;Lo;0;L;;;;;N;;;;; +189E6;TANGUT COMPONENT-487;Lo;0;L;;;;;N;;;;; +189E7;TANGUT COMPONENT-488;Lo;0;L;;;;;N;;;;; +189E8;TANGUT COMPONENT-489;Lo;0;L;;;;;N;;;;; +189E9;TANGUT COMPONENT-490;Lo;0;L;;;;;N;;;;; +189EA;TANGUT COMPONENT-491;Lo;0;L;;;;;N;;;;; +189EB;TANGUT COMPONENT-492;Lo;0;L;;;;;N;;;;; +189EC;TANGUT COMPONENT-493;Lo;0;L;;;;;N;;;;; +189ED;TANGUT COMPONENT-494;Lo;0;L;;;;;N;;;;; +189EE;TANGUT COMPONENT-495;Lo;0;L;;;;;N;;;;; +189EF;TANGUT COMPONENT-496;Lo;0;L;;;;;N;;;;; +189F0;TANGUT COMPONENT-497;Lo;0;L;;;;;N;;;;; +189F1;TANGUT COMPONENT-498;Lo;0;L;;;;;N;;;;; +189F2;TANGUT COMPONENT-499;Lo;0;L;;;;;N;;;;; +189F3;TANGUT COMPONENT-500;Lo;0;L;;;;;N;;;;; +189F4;TANGUT COMPONENT-501;Lo;0;L;;;;;N;;;;; +189F5;TANGUT COMPONENT-502;Lo;0;L;;;;;N;;;;; +189F6;TANGUT COMPONENT-503;Lo;0;L;;;;;N;;;;; +189F7;TANGUT COMPONENT-504;Lo;0;L;;;;;N;;;;; +189F8;TANGUT COMPONENT-505;Lo;0;L;;;;;N;;;;; +189F9;TANGUT COMPONENT-506;Lo;0;L;;;;;N;;;;; +189FA;TANGUT COMPONENT-507;Lo;0;L;;;;;N;;;;; +189FB;TANGUT COMPONENT-508;Lo;0;L;;;;;N;;;;; +189FC;TANGUT COMPONENT-509;Lo;0;L;;;;;N;;;;; +189FD;TANGUT COMPONENT-510;Lo;0;L;;;;;N;;;;; +189FE;TANGUT COMPONENT-511;Lo;0;L;;;;;N;;;;; +189FF;TANGUT COMPONENT-512;Lo;0;L;;;;;N;;;;; +18A00;TANGUT COMPONENT-513;Lo;0;L;;;;;N;;;;; +18A01;TANGUT COMPONENT-514;Lo;0;L;;;;;N;;;;; +18A02;TANGUT COMPONENT-515;Lo;0;L;;;;;N;;;;; +18A03;TANGUT COMPONENT-516;Lo;0;L;;;;;N;;;;; +18A04;TANGUT COMPONENT-517;Lo;0;L;;;;;N;;;;; +18A05;TANGUT COMPONENT-518;Lo;0;L;;;;;N;;;;; +18A06;TANGUT COMPONENT-519;Lo;0;L;;;;;N;;;;; +18A07;TANGUT COMPONENT-520;Lo;0;L;;;;;N;;;;; +18A08;TANGUT COMPONENT-521;Lo;0;L;;;;;N;;;;; +18A09;TANGUT COMPONENT-522;Lo;0;L;;;;;N;;;;; +18A0A;TANGUT COMPONENT-523;Lo;0;L;;;;;N;;;;; +18A0B;TANGUT COMPONENT-524;Lo;0;L;;;;;N;;;;; +18A0C;TANGUT COMPONENT-525;Lo;0;L;;;;;N;;;;; +18A0D;TANGUT COMPONENT-526;Lo;0;L;;;;;N;;;;; +18A0E;TANGUT COMPONENT-527;Lo;0;L;;;;;N;;;;; +18A0F;TANGUT COMPONENT-528;Lo;0;L;;;;;N;;;;; +18A10;TANGUT COMPONENT-529;Lo;0;L;;;;;N;;;;; +18A11;TANGUT COMPONENT-530;Lo;0;L;;;;;N;;;;; +18A12;TANGUT COMPONENT-531;Lo;0;L;;;;;N;;;;; +18A13;TANGUT COMPONENT-532;Lo;0;L;;;;;N;;;;; +18A14;TANGUT COMPONENT-533;Lo;0;L;;;;;N;;;;; +18A15;TANGUT COMPONENT-534;Lo;0;L;;;;;N;;;;; +18A16;TANGUT COMPONENT-535;Lo;0;L;;;;;N;;;;; +18A17;TANGUT COMPONENT-536;Lo;0;L;;;;;N;;;;; +18A18;TANGUT COMPONENT-537;Lo;0;L;;;;;N;;;;; +18A19;TANGUT COMPONENT-538;Lo;0;L;;;;;N;;;;; +18A1A;TANGUT COMPONENT-539;Lo;0;L;;;;;N;;;;; +18A1B;TANGUT COMPONENT-540;Lo;0;L;;;;;N;;;;; +18A1C;TANGUT COMPONENT-541;Lo;0;L;;;;;N;;;;; +18A1D;TANGUT COMPONENT-542;Lo;0;L;;;;;N;;;;; +18A1E;TANGUT COMPONENT-543;Lo;0;L;;;;;N;;;;; +18A1F;TANGUT COMPONENT-544;Lo;0;L;;;;;N;;;;; +18A20;TANGUT COMPONENT-545;Lo;0;L;;;;;N;;;;; +18A21;TANGUT COMPONENT-546;Lo;0;L;;;;;N;;;;; +18A22;TANGUT COMPONENT-547;Lo;0;L;;;;;N;;;;; +18A23;TANGUT COMPONENT-548;Lo;0;L;;;;;N;;;;; +18A24;TANGUT COMPONENT-549;Lo;0;L;;;;;N;;;;; +18A25;TANGUT COMPONENT-550;Lo;0;L;;;;;N;;;;; +18A26;TANGUT COMPONENT-551;Lo;0;L;;;;;N;;;;; +18A27;TANGUT COMPONENT-552;Lo;0;L;;;;;N;;;;; +18A28;TANGUT COMPONENT-553;Lo;0;L;;;;;N;;;;; +18A29;TANGUT COMPONENT-554;Lo;0;L;;;;;N;;;;; +18A2A;TANGUT COMPONENT-555;Lo;0;L;;;;;N;;;;; +18A2B;TANGUT COMPONENT-556;Lo;0;L;;;;;N;;;;; +18A2C;TANGUT COMPONENT-557;Lo;0;L;;;;;N;;;;; +18A2D;TANGUT COMPONENT-558;Lo;0;L;;;;;N;;;;; +18A2E;TANGUT COMPONENT-559;Lo;0;L;;;;;N;;;;; +18A2F;TANGUT COMPONENT-560;Lo;0;L;;;;;N;;;;; +18A30;TANGUT COMPONENT-561;Lo;0;L;;;;;N;;;;; +18A31;TANGUT COMPONENT-562;Lo;0;L;;;;;N;;;;; +18A32;TANGUT COMPONENT-563;Lo;0;L;;;;;N;;;;; +18A33;TANGUT COMPONENT-564;Lo;0;L;;;;;N;;;;; +18A34;TANGUT COMPONENT-565;Lo;0;L;;;;;N;;;;; +18A35;TANGUT COMPONENT-566;Lo;0;L;;;;;N;;;;; +18A36;TANGUT COMPONENT-567;Lo;0;L;;;;;N;;;;; +18A37;TANGUT COMPONENT-568;Lo;0;L;;;;;N;;;;; +18A38;TANGUT COMPONENT-569;Lo;0;L;;;;;N;;;;; +18A39;TANGUT COMPONENT-570;Lo;0;L;;;;;N;;;;; +18A3A;TANGUT COMPONENT-571;Lo;0;L;;;;;N;;;;; +18A3B;TANGUT COMPONENT-572;Lo;0;L;;;;;N;;;;; +18A3C;TANGUT COMPONENT-573;Lo;0;L;;;;;N;;;;; +18A3D;TANGUT COMPONENT-574;Lo;0;L;;;;;N;;;;; +18A3E;TANGUT COMPONENT-575;Lo;0;L;;;;;N;;;;; +18A3F;TANGUT COMPONENT-576;Lo;0;L;;;;;N;;;;; +18A40;TANGUT COMPONENT-577;Lo;0;L;;;;;N;;;;; +18A41;TANGUT COMPONENT-578;Lo;0;L;;;;;N;;;;; +18A42;TANGUT COMPONENT-579;Lo;0;L;;;;;N;;;;; +18A43;TANGUT COMPONENT-580;Lo;0;L;;;;;N;;;;; +18A44;TANGUT COMPONENT-581;Lo;0;L;;;;;N;;;;; +18A45;TANGUT COMPONENT-582;Lo;0;L;;;;;N;;;;; +18A46;TANGUT COMPONENT-583;Lo;0;L;;;;;N;;;;; +18A47;TANGUT COMPONENT-584;Lo;0;L;;;;;N;;;;; +18A48;TANGUT COMPONENT-585;Lo;0;L;;;;;N;;;;; +18A49;TANGUT COMPONENT-586;Lo;0;L;;;;;N;;;;; +18A4A;TANGUT COMPONENT-587;Lo;0;L;;;;;N;;;;; +18A4B;TANGUT COMPONENT-588;Lo;0;L;;;;;N;;;;; +18A4C;TANGUT COMPONENT-589;Lo;0;L;;;;;N;;;;; +18A4D;TANGUT COMPONENT-590;Lo;0;L;;;;;N;;;;; +18A4E;TANGUT COMPONENT-591;Lo;0;L;;;;;N;;;;; +18A4F;TANGUT COMPONENT-592;Lo;0;L;;;;;N;;;;; +18A50;TANGUT COMPONENT-593;Lo;0;L;;;;;N;;;;; +18A51;TANGUT COMPONENT-594;Lo;0;L;;;;;N;;;;; +18A52;TANGUT COMPONENT-595;Lo;0;L;;;;;N;;;;; +18A53;TANGUT COMPONENT-596;Lo;0;L;;;;;N;;;;; +18A54;TANGUT COMPONENT-597;Lo;0;L;;;;;N;;;;; +18A55;TANGUT COMPONENT-598;Lo;0;L;;;;;N;;;;; +18A56;TANGUT COMPONENT-599;Lo;0;L;;;;;N;;;;; +18A57;TANGUT COMPONENT-600;Lo;0;L;;;;;N;;;;; +18A58;TANGUT COMPONENT-601;Lo;0;L;;;;;N;;;;; +18A59;TANGUT COMPONENT-602;Lo;0;L;;;;;N;;;;; +18A5A;TANGUT COMPONENT-603;Lo;0;L;;;;;N;;;;; +18A5B;TANGUT COMPONENT-604;Lo;0;L;;;;;N;;;;; +18A5C;TANGUT COMPONENT-605;Lo;0;L;;;;;N;;;;; +18A5D;TANGUT COMPONENT-606;Lo;0;L;;;;;N;;;;; +18A5E;TANGUT COMPONENT-607;Lo;0;L;;;;;N;;;;; +18A5F;TANGUT COMPONENT-608;Lo;0;L;;;;;N;;;;; +18A60;TANGUT COMPONENT-609;Lo;0;L;;;;;N;;;;; +18A61;TANGUT COMPONENT-610;Lo;0;L;;;;;N;;;;; +18A62;TANGUT COMPONENT-611;Lo;0;L;;;;;N;;;;; +18A63;TANGUT COMPONENT-612;Lo;0;L;;;;;N;;;;; +18A64;TANGUT COMPONENT-613;Lo;0;L;;;;;N;;;;; +18A65;TANGUT COMPONENT-614;Lo;0;L;;;;;N;;;;; +18A66;TANGUT COMPONENT-615;Lo;0;L;;;;;N;;;;; +18A67;TANGUT COMPONENT-616;Lo;0;L;;;;;N;;;;; +18A68;TANGUT COMPONENT-617;Lo;0;L;;;;;N;;;;; +18A69;TANGUT COMPONENT-618;Lo;0;L;;;;;N;;;;; +18A6A;TANGUT COMPONENT-619;Lo;0;L;;;;;N;;;;; +18A6B;TANGUT COMPONENT-620;Lo;0;L;;;;;N;;;;; +18A6C;TANGUT COMPONENT-621;Lo;0;L;;;;;N;;;;; +18A6D;TANGUT COMPONENT-622;Lo;0;L;;;;;N;;;;; +18A6E;TANGUT COMPONENT-623;Lo;0;L;;;;;N;;;;; +18A6F;TANGUT COMPONENT-624;Lo;0;L;;;;;N;;;;; +18A70;TANGUT COMPONENT-625;Lo;0;L;;;;;N;;;;; +18A71;TANGUT COMPONENT-626;Lo;0;L;;;;;N;;;;; +18A72;TANGUT COMPONENT-627;Lo;0;L;;;;;N;;;;; +18A73;TANGUT COMPONENT-628;Lo;0;L;;;;;N;;;;; +18A74;TANGUT COMPONENT-629;Lo;0;L;;;;;N;;;;; +18A75;TANGUT COMPONENT-630;Lo;0;L;;;;;N;;;;; +18A76;TANGUT COMPONENT-631;Lo;0;L;;;;;N;;;;; +18A77;TANGUT COMPONENT-632;Lo;0;L;;;;;N;;;;; +18A78;TANGUT COMPONENT-633;Lo;0;L;;;;;N;;;;; +18A79;TANGUT COMPONENT-634;Lo;0;L;;;;;N;;;;; +18A7A;TANGUT COMPONENT-635;Lo;0;L;;;;;N;;;;; +18A7B;TANGUT COMPONENT-636;Lo;0;L;;;;;N;;;;; +18A7C;TANGUT COMPONENT-637;Lo;0;L;;;;;N;;;;; +18A7D;TANGUT COMPONENT-638;Lo;0;L;;;;;N;;;;; +18A7E;TANGUT COMPONENT-639;Lo;0;L;;;;;N;;;;; +18A7F;TANGUT COMPONENT-640;Lo;0;L;;;;;N;;;;; +18A80;TANGUT COMPONENT-641;Lo;0;L;;;;;N;;;;; +18A81;TANGUT COMPONENT-642;Lo;0;L;;;;;N;;;;; +18A82;TANGUT COMPONENT-643;Lo;0;L;;;;;N;;;;; +18A83;TANGUT COMPONENT-644;Lo;0;L;;;;;N;;;;; +18A84;TANGUT COMPONENT-645;Lo;0;L;;;;;N;;;;; +18A85;TANGUT COMPONENT-646;Lo;0;L;;;;;N;;;;; +18A86;TANGUT COMPONENT-647;Lo;0;L;;;;;N;;;;; +18A87;TANGUT COMPONENT-648;Lo;0;L;;;;;N;;;;; +18A88;TANGUT COMPONENT-649;Lo;0;L;;;;;N;;;;; +18A89;TANGUT COMPONENT-650;Lo;0;L;;;;;N;;;;; +18A8A;TANGUT COMPONENT-651;Lo;0;L;;;;;N;;;;; +18A8B;TANGUT COMPONENT-652;Lo;0;L;;;;;N;;;;; +18A8C;TANGUT COMPONENT-653;Lo;0;L;;;;;N;;;;; +18A8D;TANGUT COMPONENT-654;Lo;0;L;;;;;N;;;;; +18A8E;TANGUT COMPONENT-655;Lo;0;L;;;;;N;;;;; +18A8F;TANGUT COMPONENT-656;Lo;0;L;;;;;N;;;;; +18A90;TANGUT COMPONENT-657;Lo;0;L;;;;;N;;;;; +18A91;TANGUT COMPONENT-658;Lo;0;L;;;;;N;;;;; +18A92;TANGUT COMPONENT-659;Lo;0;L;;;;;N;;;;; +18A93;TANGUT COMPONENT-660;Lo;0;L;;;;;N;;;;; +18A94;TANGUT COMPONENT-661;Lo;0;L;;;;;N;;;;; +18A95;TANGUT COMPONENT-662;Lo;0;L;;;;;N;;;;; +18A96;TANGUT COMPONENT-663;Lo;0;L;;;;;N;;;;; +18A97;TANGUT COMPONENT-664;Lo;0;L;;;;;N;;;;; +18A98;TANGUT COMPONENT-665;Lo;0;L;;;;;N;;;;; +18A99;TANGUT COMPONENT-666;Lo;0;L;;;;;N;;;;; +18A9A;TANGUT COMPONENT-667;Lo;0;L;;;;;N;;;;; +18A9B;TANGUT COMPONENT-668;Lo;0;L;;;;;N;;;;; +18A9C;TANGUT COMPONENT-669;Lo;0;L;;;;;N;;;;; +18A9D;TANGUT COMPONENT-670;Lo;0;L;;;;;N;;;;; +18A9E;TANGUT COMPONENT-671;Lo;0;L;;;;;N;;;;; +18A9F;TANGUT COMPONENT-672;Lo;0;L;;;;;N;;;;; +18AA0;TANGUT COMPONENT-673;Lo;0;L;;;;;N;;;;; +18AA1;TANGUT COMPONENT-674;Lo;0;L;;;;;N;;;;; +18AA2;TANGUT COMPONENT-675;Lo;0;L;;;;;N;;;;; +18AA3;TANGUT COMPONENT-676;Lo;0;L;;;;;N;;;;; +18AA4;TANGUT COMPONENT-677;Lo;0;L;;;;;N;;;;; +18AA5;TANGUT COMPONENT-678;Lo;0;L;;;;;N;;;;; +18AA6;TANGUT COMPONENT-679;Lo;0;L;;;;;N;;;;; +18AA7;TANGUT COMPONENT-680;Lo;0;L;;;;;N;;;;; +18AA8;TANGUT COMPONENT-681;Lo;0;L;;;;;N;;;;; +18AA9;TANGUT COMPONENT-682;Lo;0;L;;;;;N;;;;; +18AAA;TANGUT COMPONENT-683;Lo;0;L;;;;;N;;;;; +18AAB;TANGUT COMPONENT-684;Lo;0;L;;;;;N;;;;; +18AAC;TANGUT COMPONENT-685;Lo;0;L;;;;;N;;;;; +18AAD;TANGUT COMPONENT-686;Lo;0;L;;;;;N;;;;; +18AAE;TANGUT COMPONENT-687;Lo;0;L;;;;;N;;;;; +18AAF;TANGUT COMPONENT-688;Lo;0;L;;;;;N;;;;; +18AB0;TANGUT COMPONENT-689;Lo;0;L;;;;;N;;;;; +18AB1;TANGUT COMPONENT-690;Lo;0;L;;;;;N;;;;; +18AB2;TANGUT COMPONENT-691;Lo;0;L;;;;;N;;;;; +18AB3;TANGUT COMPONENT-692;Lo;0;L;;;;;N;;;;; +18AB4;TANGUT COMPONENT-693;Lo;0;L;;;;;N;;;;; +18AB5;TANGUT COMPONENT-694;Lo;0;L;;;;;N;;;;; +18AB6;TANGUT COMPONENT-695;Lo;0;L;;;;;N;;;;; +18AB7;TANGUT COMPONENT-696;Lo;0;L;;;;;N;;;;; +18AB8;TANGUT COMPONENT-697;Lo;0;L;;;;;N;;;;; +18AB9;TANGUT COMPONENT-698;Lo;0;L;;;;;N;;;;; +18ABA;TANGUT COMPONENT-699;Lo;0;L;;;;;N;;;;; +18ABB;TANGUT COMPONENT-700;Lo;0;L;;;;;N;;;;; +18ABC;TANGUT COMPONENT-701;Lo;0;L;;;;;N;;;;; +18ABD;TANGUT COMPONENT-702;Lo;0;L;;;;;N;;;;; +18ABE;TANGUT COMPONENT-703;Lo;0;L;;;;;N;;;;; +18ABF;TANGUT COMPONENT-704;Lo;0;L;;;;;N;;;;; +18AC0;TANGUT COMPONENT-705;Lo;0;L;;;;;N;;;;; +18AC1;TANGUT COMPONENT-706;Lo;0;L;;;;;N;;;;; +18AC2;TANGUT COMPONENT-707;Lo;0;L;;;;;N;;;;; +18AC3;TANGUT COMPONENT-708;Lo;0;L;;;;;N;;;;; +18AC4;TANGUT COMPONENT-709;Lo;0;L;;;;;N;;;;; +18AC5;TANGUT COMPONENT-710;Lo;0;L;;;;;N;;;;; +18AC6;TANGUT COMPONENT-711;Lo;0;L;;;;;N;;;;; +18AC7;TANGUT COMPONENT-712;Lo;0;L;;;;;N;;;;; +18AC8;TANGUT COMPONENT-713;Lo;0;L;;;;;N;;;;; +18AC9;TANGUT COMPONENT-714;Lo;0;L;;;;;N;;;;; +18ACA;TANGUT COMPONENT-715;Lo;0;L;;;;;N;;;;; +18ACB;TANGUT COMPONENT-716;Lo;0;L;;;;;N;;;;; +18ACC;TANGUT COMPONENT-717;Lo;0;L;;;;;N;;;;; +18ACD;TANGUT COMPONENT-718;Lo;0;L;;;;;N;;;;; +18ACE;TANGUT COMPONENT-719;Lo;0;L;;;;;N;;;;; +18ACF;TANGUT COMPONENT-720;Lo;0;L;;;;;N;;;;; +18AD0;TANGUT COMPONENT-721;Lo;0;L;;;;;N;;;;; +18AD1;TANGUT COMPONENT-722;Lo;0;L;;;;;N;;;;; +18AD2;TANGUT COMPONENT-723;Lo;0;L;;;;;N;;;;; +18AD3;TANGUT COMPONENT-724;Lo;0;L;;;;;N;;;;; +18AD4;TANGUT COMPONENT-725;Lo;0;L;;;;;N;;;;; +18AD5;TANGUT COMPONENT-726;Lo;0;L;;;;;N;;;;; +18AD6;TANGUT COMPONENT-727;Lo;0;L;;;;;N;;;;; +18AD7;TANGUT COMPONENT-728;Lo;0;L;;;;;N;;;;; +18AD8;TANGUT COMPONENT-729;Lo;0;L;;;;;N;;;;; +18AD9;TANGUT COMPONENT-730;Lo;0;L;;;;;N;;;;; +18ADA;TANGUT COMPONENT-731;Lo;0;L;;;;;N;;;;; +18ADB;TANGUT COMPONENT-732;Lo;0;L;;;;;N;;;;; +18ADC;TANGUT COMPONENT-733;Lo;0;L;;;;;N;;;;; +18ADD;TANGUT COMPONENT-734;Lo;0;L;;;;;N;;;;; +18ADE;TANGUT COMPONENT-735;Lo;0;L;;;;;N;;;;; +18ADF;TANGUT COMPONENT-736;Lo;0;L;;;;;N;;;;; +18AE0;TANGUT COMPONENT-737;Lo;0;L;;;;;N;;;;; +18AE1;TANGUT COMPONENT-738;Lo;0;L;;;;;N;;;;; +18AE2;TANGUT COMPONENT-739;Lo;0;L;;;;;N;;;;; +18AE3;TANGUT COMPONENT-740;Lo;0;L;;;;;N;;;;; +18AE4;TANGUT COMPONENT-741;Lo;0;L;;;;;N;;;;; +18AE5;TANGUT COMPONENT-742;Lo;0;L;;;;;N;;;;; +18AE6;TANGUT COMPONENT-743;Lo;0;L;;;;;N;;;;; +18AE7;TANGUT COMPONENT-744;Lo;0;L;;;;;N;;;;; +18AE8;TANGUT COMPONENT-745;Lo;0;L;;;;;N;;;;; +18AE9;TANGUT COMPONENT-746;Lo;0;L;;;;;N;;;;; +18AEA;TANGUT COMPONENT-747;Lo;0;L;;;;;N;;;;; +18AEB;TANGUT COMPONENT-748;Lo;0;L;;;;;N;;;;; +18AEC;TANGUT COMPONENT-749;Lo;0;L;;;;;N;;;;; +18AED;TANGUT COMPONENT-750;Lo;0;L;;;;;N;;;;; +18AEE;TANGUT COMPONENT-751;Lo;0;L;;;;;N;;;;; +18AEF;TANGUT COMPONENT-752;Lo;0;L;;;;;N;;;;; +18AF0;TANGUT COMPONENT-753;Lo;0;L;;;;;N;;;;; +18AF1;TANGUT COMPONENT-754;Lo;0;L;;;;;N;;;;; +18AF2;TANGUT COMPONENT-755;Lo;0;L;;;;;N;;;;; 1B000;KATAKANA LETTER ARCHAIC E;Lo;0;L;;;;;N;;;;; 1B001;HIRAGANA LETTER ARCHAIC YE;Lo;0;L;;;;;N;;;;; 1BC00;DUPLOYAN LETTER H;Lo;0;L;;;;;N;;;;; @@ -26154,6 +27313,44 @@ FFFD;REPLACEMENT CHARACTER;So;0;ON;;;;;N;;;;; 1DAAD;SIGNWRITING ROTATION MODIFIER-14;Mn;0;NSM;;;;;N;;;;; 1DAAE;SIGNWRITING ROTATION MODIFIER-15;Mn;0;NSM;;;;;N;;;;; 1DAAF;SIGNWRITING ROTATION MODIFIER-16;Mn;0;NSM;;;;;N;;;;; +1E000;COMBINING GLAGOLITIC LETTER AZU;Mn;230;NSM;;;;;N;;;;; +1E001;COMBINING GLAGOLITIC LETTER BUKY;Mn;230;NSM;;;;;N;;;;; +1E002;COMBINING GLAGOLITIC LETTER VEDE;Mn;230;NSM;;;;;N;;;;; +1E003;COMBINING GLAGOLITIC LETTER GLAGOLI;Mn;230;NSM;;;;;N;;;;; +1E004;COMBINING GLAGOLITIC LETTER DOBRO;Mn;230;NSM;;;;;N;;;;; +1E005;COMBINING GLAGOLITIC LETTER YESTU;Mn;230;NSM;;;;;N;;;;; +1E006;COMBINING GLAGOLITIC LETTER ZHIVETE;Mn;230;NSM;;;;;N;;;;; +1E008;COMBINING GLAGOLITIC LETTER ZEMLJA;Mn;230;NSM;;;;;N;;;;; +1E009;COMBINING GLAGOLITIC LETTER IZHE;Mn;230;NSM;;;;;N;;;;; +1E00A;COMBINING GLAGOLITIC LETTER INITIAL IZHE;Mn;230;NSM;;;;;N;;;;; +1E00B;COMBINING GLAGOLITIC LETTER I;Mn;230;NSM;;;;;N;;;;; +1E00C;COMBINING GLAGOLITIC LETTER DJERVI;Mn;230;NSM;;;;;N;;;;; +1E00D;COMBINING GLAGOLITIC LETTER KAKO;Mn;230;NSM;;;;;N;;;;; +1E00E;COMBINING GLAGOLITIC LETTER LJUDIJE;Mn;230;NSM;;;;;N;;;;; +1E00F;COMBINING GLAGOLITIC LETTER MYSLITE;Mn;230;NSM;;;;;N;;;;; +1E010;COMBINING GLAGOLITIC LETTER NASHI;Mn;230;NSM;;;;;N;;;;; +1E011;COMBINING GLAGOLITIC LETTER ONU;Mn;230;NSM;;;;;N;;;;; +1E012;COMBINING GLAGOLITIC LETTER POKOJI;Mn;230;NSM;;;;;N;;;;; +1E013;COMBINING GLAGOLITIC LETTER RITSI;Mn;230;NSM;;;;;N;;;;; +1E014;COMBINING GLAGOLITIC LETTER SLOVO;Mn;230;NSM;;;;;N;;;;; +1E015;COMBINING GLAGOLITIC LETTER TVRIDO;Mn;230;NSM;;;;;N;;;;; +1E016;COMBINING GLAGOLITIC LETTER UKU;Mn;230;NSM;;;;;N;;;;; +1E017;COMBINING GLAGOLITIC LETTER FRITU;Mn;230;NSM;;;;;N;;;;; +1E018;COMBINING GLAGOLITIC LETTER HERU;Mn;230;NSM;;;;;N;;;;; +1E01B;COMBINING GLAGOLITIC LETTER SHTA;Mn;230;NSM;;;;;N;;;;; +1E01C;COMBINING GLAGOLITIC LETTER TSI;Mn;230;NSM;;;;;N;;;;; +1E01D;COMBINING GLAGOLITIC LETTER CHRIVI;Mn;230;NSM;;;;;N;;;;; +1E01E;COMBINING GLAGOLITIC LETTER SHA;Mn;230;NSM;;;;;N;;;;; +1E01F;COMBINING GLAGOLITIC LETTER YERU;Mn;230;NSM;;;;;N;;;;; +1E020;COMBINING GLAGOLITIC LETTER YERI;Mn;230;NSM;;;;;N;;;;; +1E021;COMBINING GLAGOLITIC LETTER YATI;Mn;230;NSM;;;;;N;;;;; +1E023;COMBINING GLAGOLITIC LETTER YU;Mn;230;NSM;;;;;N;;;;; +1E024;COMBINING GLAGOLITIC LETTER SMALL YUS;Mn;230;NSM;;;;;N;;;;; +1E026;COMBINING GLAGOLITIC LETTER YO;Mn;230;NSM;;;;;N;;;;; +1E027;COMBINING GLAGOLITIC LETTER IOTATED SMALL YUS;Mn;230;NSM;;;;;N;;;;; +1E028;COMBINING GLAGOLITIC LETTER BIG YUS;Mn;230;NSM;;;;;N;;;;; +1E029;COMBINING GLAGOLITIC LETTER IOTATED BIG YUS;Mn;230;NSM;;;;;N;;;;; +1E02A;COMBINING GLAGOLITIC LETTER FITA;Mn;230;NSM;;;;;N;;;;; 1E800;MENDE KIKAKUI SYLLABLE M001 KI;Lo;0;R;;;;;N;;;;; 1E801;MENDE KIKAKUI SYLLABLE M002 KA;Lo;0;R;;;;;N;;;;; 1E802;MENDE KIKAKUI SYLLABLE M003 KU;Lo;0;R;;;;;N;;;;; @@ -26367,6 +27564,93 @@ FFFD;REPLACEMENT CHARACTER;So;0;ON;;;;;N;;;;; 1E8D4;MENDE KIKAKUI COMBINING NUMBER TEN THOUSANDS;Mn;220;NSM;;;;;N;;;;; 1E8D5;MENDE KIKAKUI COMBINING NUMBER HUNDRED THOUSANDS;Mn;220;NSM;;;;;N;;;;; 1E8D6;MENDE KIKAKUI COMBINING NUMBER MILLIONS;Mn;220;NSM;;;;;N;;;;; +1E900;ADLAM CAPITAL LETTER ALIF;Lu;0;R;;;;;N;;;;1E922; +1E901;ADLAM CAPITAL LETTER DAALI;Lu;0;R;;;;;N;;;;1E923; +1E902;ADLAM CAPITAL LETTER LAAM;Lu;0;R;;;;;N;;;;1E924; +1E903;ADLAM CAPITAL LETTER MIIM;Lu;0;R;;;;;N;;;;1E925; +1E904;ADLAM CAPITAL LETTER BA;Lu;0;R;;;;;N;;;;1E926; +1E905;ADLAM CAPITAL LETTER SINNYIIYHE;Lu;0;R;;;;;N;;;;1E927; +1E906;ADLAM CAPITAL LETTER PE;Lu;0;R;;;;;N;;;;1E928; +1E907;ADLAM CAPITAL LETTER BHE;Lu;0;R;;;;;N;;;;1E929; +1E908;ADLAM CAPITAL LETTER RA;Lu;0;R;;;;;N;;;;1E92A; +1E909;ADLAM CAPITAL LETTER E;Lu;0;R;;;;;N;;;;1E92B; +1E90A;ADLAM CAPITAL LETTER FA;Lu;0;R;;;;;N;;;;1E92C; +1E90B;ADLAM CAPITAL LETTER I;Lu;0;R;;;;;N;;;;1E92D; +1E90C;ADLAM CAPITAL LETTER O;Lu;0;R;;;;;N;;;;1E92E; +1E90D;ADLAM CAPITAL LETTER DHA;Lu;0;R;;;;;N;;;;1E92F; +1E90E;ADLAM CAPITAL LETTER YHE;Lu;0;R;;;;;N;;;;1E930; +1E90F;ADLAM CAPITAL LETTER WAW;Lu;0;R;;;;;N;;;;1E931; +1E910;ADLAM CAPITAL LETTER NUN;Lu;0;R;;;;;N;;;;1E932; +1E911;ADLAM CAPITAL LETTER KAF;Lu;0;R;;;;;N;;;;1E933; +1E912;ADLAM CAPITAL LETTER YA;Lu;0;R;;;;;N;;;;1E934; +1E913;ADLAM CAPITAL LETTER U;Lu;0;R;;;;;N;;;;1E935; +1E914;ADLAM CAPITAL LETTER JIIM;Lu;0;R;;;;;N;;;;1E936; +1E915;ADLAM CAPITAL LETTER CHI;Lu;0;R;;;;;N;;;;1E937; +1E916;ADLAM CAPITAL LETTER HA;Lu;0;R;;;;;N;;;;1E938; +1E917;ADLAM CAPITAL LETTER QAAF;Lu;0;R;;;;;N;;;;1E939; +1E918;ADLAM CAPITAL LETTER GA;Lu;0;R;;;;;N;;;;1E93A; +1E919;ADLAM CAPITAL LETTER NYA;Lu;0;R;;;;;N;;;;1E93B; +1E91A;ADLAM CAPITAL LETTER TU;Lu;0;R;;;;;N;;;;1E93C; +1E91B;ADLAM CAPITAL LETTER NHA;Lu;0;R;;;;;N;;;;1E93D; +1E91C;ADLAM CAPITAL LETTER VA;Lu;0;R;;;;;N;;;;1E93E; +1E91D;ADLAM CAPITAL LETTER KHA;Lu;0;R;;;;;N;;;;1E93F; +1E91E;ADLAM CAPITAL LETTER GBE;Lu;0;R;;;;;N;;;;1E940; +1E91F;ADLAM CAPITAL LETTER ZAL;Lu;0;R;;;;;N;;;;1E941; +1E920;ADLAM CAPITAL LETTER KPO;Lu;0;R;;;;;N;;;;1E942; +1E921;ADLAM CAPITAL LETTER SHA;Lu;0;R;;;;;N;;;;1E943; +1E922;ADLAM SMALL LETTER ALIF;Ll;0;R;;;;;N;;;1E900;;1E900 +1E923;ADLAM SMALL LETTER DAALI;Ll;0;R;;;;;N;;;1E901;;1E901 +1E924;ADLAM SMALL LETTER LAAM;Ll;0;R;;;;;N;;;1E902;;1E902 +1E925;ADLAM SMALL LETTER MIIM;Ll;0;R;;;;;N;;;1E903;;1E903 +1E926;ADLAM SMALL LETTER BA;Ll;0;R;;;;;N;;;1E904;;1E904 +1E927;ADLAM SMALL LETTER SINNYIIYHE;Ll;0;R;;;;;N;;;1E905;;1E905 +1E928;ADLAM SMALL LETTER PE;Ll;0;R;;;;;N;;;1E906;;1E906 +1E929;ADLAM SMALL LETTER BHE;Ll;0;R;;;;;N;;;1E907;;1E907 +1E92A;ADLAM SMALL LETTER RA;Ll;0;R;;;;;N;;;1E908;;1E908 +1E92B;ADLAM SMALL LETTER E;Ll;0;R;;;;;N;;;1E909;;1E909 +1E92C;ADLAM SMALL LETTER FA;Ll;0;R;;;;;N;;;1E90A;;1E90A +1E92D;ADLAM SMALL LETTER I;Ll;0;R;;;;;N;;;1E90B;;1E90B +1E92E;ADLAM SMALL LETTER O;Ll;0;R;;;;;N;;;1E90C;;1E90C +1E92F;ADLAM SMALL LETTER DHA;Ll;0;R;;;;;N;;;1E90D;;1E90D +1E930;ADLAM SMALL LETTER YHE;Ll;0;R;;;;;N;;;1E90E;;1E90E +1E931;ADLAM SMALL LETTER WAW;Ll;0;R;;;;;N;;;1E90F;;1E90F +1E932;ADLAM SMALL LETTER NUN;Ll;0;R;;;;;N;;;1E910;;1E910 +1E933;ADLAM SMALL LETTER KAF;Ll;0;R;;;;;N;;;1E911;;1E911 +1E934;ADLAM SMALL LETTER YA;Ll;0;R;;;;;N;;;1E912;;1E912 +1E935;ADLAM SMALL LETTER U;Ll;0;R;;;;;N;;;1E913;;1E913 +1E936;ADLAM SMALL LETTER JIIM;Ll;0;R;;;;;N;;;1E914;;1E914 +1E937;ADLAM SMALL LETTER CHI;Ll;0;R;;;;;N;;;1E915;;1E915 +1E938;ADLAM SMALL LETTER HA;Ll;0;R;;;;;N;;;1E916;;1E916 +1E939;ADLAM SMALL LETTER QAAF;Ll;0;R;;;;;N;;;1E917;;1E917 +1E93A;ADLAM SMALL LETTER GA;Ll;0;R;;;;;N;;;1E918;;1E918 +1E93B;ADLAM SMALL LETTER NYA;Ll;0;R;;;;;N;;;1E919;;1E919 +1E93C;ADLAM SMALL LETTER TU;Ll;0;R;;;;;N;;;1E91A;;1E91A +1E93D;ADLAM SMALL LETTER NHA;Ll;0;R;;;;;N;;;1E91B;;1E91B +1E93E;ADLAM SMALL LETTER VA;Ll;0;R;;;;;N;;;1E91C;;1E91C +1E93F;ADLAM SMALL LETTER KHA;Ll;0;R;;;;;N;;;1E91D;;1E91D +1E940;ADLAM SMALL LETTER GBE;Ll;0;R;;;;;N;;;1E91E;;1E91E +1E941;ADLAM SMALL LETTER ZAL;Ll;0;R;;;;;N;;;1E91F;;1E91F +1E942;ADLAM SMALL LETTER KPO;Ll;0;R;;;;;N;;;1E920;;1E920 +1E943;ADLAM SMALL LETTER SHA;Ll;0;R;;;;;N;;;1E921;;1E921 +1E944;ADLAM ALIF LENGTHENER;Mn;230;NSM;;;;;N;;;;; +1E945;ADLAM VOWEL LENGTHENER;Mn;230;NSM;;;;;N;;;;; +1E946;ADLAM GEMINATION MARK;Mn;230;NSM;;;;;N;;;;; +1E947;ADLAM HAMZA;Mn;230;NSM;;;;;N;;;;; +1E948;ADLAM CONSONANT MODIFIER;Mn;230;NSM;;;;;N;;;;; +1E949;ADLAM GEMINATE CONSONANT MODIFIER;Mn;230;NSM;;;;;N;;;;; +1E94A;ADLAM NUKTA;Mn;7;NSM;;;;;N;;;;; +1E950;ADLAM DIGIT ZERO;Nd;0;R;;0;0;0;N;;;;; +1E951;ADLAM DIGIT ONE;Nd;0;R;;1;1;1;N;;;;; +1E952;ADLAM DIGIT TWO;Nd;0;R;;2;2;2;N;;;;; +1E953;ADLAM DIGIT THREE;Nd;0;R;;3;3;3;N;;;;; +1E954;ADLAM DIGIT FOUR;Nd;0;R;;4;4;4;N;;;;; +1E955;ADLAM DIGIT FIVE;Nd;0;R;;5;5;5;N;;;;; +1E956;ADLAM DIGIT SIX;Nd;0;R;;6;6;6;N;;;;; +1E957;ADLAM DIGIT SEVEN;Nd;0;R;;7;7;7;N;;;;; +1E958;ADLAM DIGIT EIGHT;Nd;0;R;;8;8;8;N;;;;; +1E959;ADLAM DIGIT NINE;Nd;0;R;;9;9;9;N;;;;; +1E95E;ADLAM INITIAL EXCLAMATION MARK;Po;0;R;;;;;N;;;;; +1E95F;ADLAM INITIAL QUESTION MARK;Po;0;R;;;;;N;;;;; 1EE00;ARABIC MATHEMATICAL ALEF;Lo;0;AL; 0627;;;;N;;;;; 1EE01;ARABIC MATHEMATICAL BEH;Lo;0;AL; 0628;;;;N;;;;; 1EE02;ARABIC MATHEMATICAL JEEM;Lo;0;AL; 062C;;;;N;;;;; @@ -26883,6 +28167,24 @@ FFFD;REPLACEMENT CHARACTER;So;0;ON;;;;;N;;;;; 1F198;SQUARED SOS;So;0;L;;;;;N;;;;; 1F199;SQUARED UP WITH EXCLAMATION MARK;So;0;L;;;;;N;;;;; 1F19A;SQUARED VS;So;0;L;;;;;N;;;;; +1F19B;SQUARED THREE D;So;0;L;;;;;N;;;;; +1F19C;SQUARED SECOND SCREEN;So;0;L;;;;;N;;;;; +1F19D;SQUARED TWO K;So;0;L;;;;;N;;;;; +1F19E;SQUARED FOUR K;So;0;L;;;;;N;;;;; +1F19F;SQUARED EIGHT K;So;0;L;;;;;N;;;;; +1F1A0;SQUARED FIVE POINT ONE;So;0;L;;;;;N;;;;; +1F1A1;SQUARED SEVEN POINT ONE;So;0;L;;;;;N;;;;; +1F1A2;SQUARED TWENTY-TWO POINT TWO;So;0;L;;;;;N;;;;; +1F1A3;SQUARED SIXTY P;So;0;L;;;;;N;;;;; +1F1A4;SQUARED ONE HUNDRED TWENTY P;So;0;L;;;;;N;;;;; +1F1A5;SQUARED LATIN SMALL LETTER D;So;0;L;;;;;N;;;;; +1F1A6;SQUARED HC;So;0;L;;;;;N;;;;; +1F1A7;SQUARED HDR;So;0;L;;;;;N;;;;; +1F1A8;SQUARED HI-RES;So;0;L;;;;;N;;;;; +1F1A9;SQUARED LOSSLESS;So;0;L;;;;;N;;;;; +1F1AA;SQUARED SHV;So;0;L;;;;;N;;;;; +1F1AB;SQUARED UHD;So;0;L;;;;;N;;;;; +1F1AC;SQUARED VOD;So;0;L;;;;;N;;;;; 1F1E6;REGIONAL INDICATOR SYMBOL LETTER A;So;0;L;;;;;N;;;;; 1F1E7;REGIONAL INDICATOR SYMBOL LETTER B;So;0;L;;;;;N;;;;; 1F1E8;REGIONAL INDICATOR SYMBOL LETTER C;So;0;L;;;;;N;;;;; @@ -26955,6 +28257,7 @@ FFFD;REPLACEMENT CHARACTER;So;0;ON;;;;;N;;;;; 1F238;SQUARED CJK UNIFIED IDEOGRAPH-7533;So;0;L; 7533;;;;N;;;;; 1F239;SQUARED CJK UNIFIED IDEOGRAPH-5272;So;0;L; 5272;;;;N;;;;; 1F23A;SQUARED CJK UNIFIED IDEOGRAPH-55B6;So;0;L; 55B6;;;;N;;;;; +1F23B;SQUARED CJK UNIFIED IDEOGRAPH-914D;So;0;L; 914D;;;;N;;;;; 1F240;TORTOISE SHELL BRACKETED CJK UNIFIED IDEOGRAPH-672C;So;0;L; 3014 672C 3015;;;;N;;;;; 1F241;TORTOISE SHELL BRACKETED CJK UNIFIED IDEOGRAPH-4E09;So;0;L; 3014 4E09 3015;;;;N;;;;; 1F242;TORTOISE SHELL BRACKETED CJK UNIFIED IDEOGRAPH-4E8C;So;0;L; 3014 4E8C 3015;;;;N;;;;; @@ -27600,6 +28903,7 @@ FFFD;REPLACEMENT CHARACTER;So;0;ON;;;;;N;;;;; 1F577;SPIDER;So;0;ON;;;;;N;;;;; 1F578;SPIDER WEB;So;0;ON;;;;;N;;;;; 1F579;JOYSTICK;So;0;ON;;;;;N;;;;; +1F57A;MAN DANCING;So;0;ON;;;;;N;;;;; 1F57B;LEFT HAND TELEPHONE RECEIVER;So;0;ON;;;;;N;;;;; 1F57C;TELEPHONE RECEIVER WITH PAGE;So;0;ON;;;;;N;;;;; 1F57D;RIGHT HAND TELEPHONE RECEIVER;So;0;ON;;;;;N;;;;; @@ -27641,6 +28945,7 @@ FFFD;REPLACEMENT CHARACTER;So;0;ON;;;;;N;;;;; 1F5A1;SIDEWAYS BLACK DOWN POINTING INDEX;So;0;ON;;;;;N;;;;; 1F5A2;BLACK UP POINTING BACKHAND INDEX;So;0;ON;;;;;N;;;;; 1F5A3;BLACK DOWN POINTING BACKHAND INDEX;So;0;ON;;;;;N;;;;; +1F5A4;BLACK HEART;So;0;ON;;;;;N;;;;; 1F5A5;DESKTOP COMPUTER;So;0;ON;;;;;N;;;;; 1F5A6;KEYBOARD AND MOUSE;So;0;ON;;;;;N;;;;; 1F5A7;THREE NETWORKED COMPUTERS;So;0;ON;;;;;N;;;;; @@ -27941,6 +29246,8 @@ FFFD;REPLACEMENT CHARACTER;So;0;ON;;;;;N;;;;; 1F6CE;BELLHOP BELL;So;0;ON;;;;;N;;;;; 1F6CF;BED;So;0;ON;;;;;N;;;;; 1F6D0;PLACE OF WORSHIP;So;0;ON;;;;;N;;;;; +1F6D1;OCTAGONAL SIGN;So;0;ON;;;;;N;;;;; +1F6D2;SHOPPING TROLLEY;So;0;ON;;;;;N;;;;; 1F6E0;HAMMER AND WRENCH;So;0;ON;;;;;N;;;;; 1F6E1;SHIELD;So;0;ON;;;;;N;;;;; 1F6E2;OIL DRUM;So;0;ON;;;;;N;;;;; @@ -27958,6 +29265,9 @@ FFFD;REPLACEMENT CHARACTER;So;0;ON;;;;;N;;;;; 1F6F1;ONCOMING FIRE ENGINE;So;0;ON;;;;;N;;;;; 1F6F2;DIESEL LOCOMOTIVE;So;0;ON;;;;;N;;;;; 1F6F3;PASSENGER SHIP;So;0;ON;;;;;N;;;;; +1F6F4;SCOOTER;So;0;ON;;;;;N;;;;; +1F6F5;MOTOR SCOOTER;So;0;ON;;;;;N;;;;; +1F6F6;CANOE;So;0;ON;;;;;N;;;;; 1F700;ALCHEMICAL SYMBOL FOR QUINTESSENCE;So;0;ON;;;;;N;;;;; 1F701;ALCHEMICAL SYMBOL FOR AIR;So;0;ON;;;;;N;;;;; 1F702;ALCHEMICAL SYMBOL FOR FIRE;So;0;ON;;;;;N;;;;; @@ -28316,11 +29626,78 @@ FFFD;REPLACEMENT CHARACTER;So;0;ON;;;;;N;;;;; 1F916;ROBOT FACE;So;0;ON;;;;;N;;;;; 1F917;HUGGING FACE;So;0;ON;;;;;N;;;;; 1F918;SIGN OF THE HORNS;So;0;ON;;;;;N;;;;; +1F919;CALL ME HAND;So;0;ON;;;;;N;;;;; +1F91A;RAISED BACK OF HAND;So;0;ON;;;;;N;;;;; +1F91B;LEFT-FACING FIST;So;0;ON;;;;;N;;;;; +1F91C;RIGHT-FACING FIST;So;0;ON;;;;;N;;;;; +1F91D;HANDSHAKE;So;0;ON;;;;;N;;;;; +1F91E;HAND WITH INDEX AND MIDDLE FINGERS CROSSED;So;0;ON;;;;;N;;;;; +1F920;FACE WITH COWBOY HAT;So;0;ON;;;;;N;;;;; +1F921;CLOWN FACE;So;0;ON;;;;;N;;;;; +1F922;NAUSEATED FACE;So;0;ON;;;;;N;;;;; +1F923;ROLLING ON THE FLOOR LAUGHING;So;0;ON;;;;;N;;;;; +1F924;DROOLING FACE;So;0;ON;;;;;N;;;;; +1F925;LYING FACE;So;0;ON;;;;;N;;;;; +1F926;FACE PALM;So;0;ON;;;;;N;;;;; +1F927;SNEEZING FACE;So;0;ON;;;;;N;;;;; +1F930;PREGNANT WOMAN;So;0;ON;;;;;N;;;;; +1F933;SELFIE;So;0;ON;;;;;N;;;;; +1F934;PRINCE;So;0;ON;;;;;N;;;;; +1F935;MAN IN TUXEDO;So;0;ON;;;;;N;;;;; +1F936;MOTHER CHRISTMAS;So;0;ON;;;;;N;;;;; +1F937;SHRUG;So;0;ON;;;;;N;;;;; +1F938;PERSON DOING CARTWHEEL;So;0;ON;;;;;N;;;;; +1F939;JUGGLING;So;0;ON;;;;;N;;;;; +1F93A;FENCER;So;0;ON;;;;;N;;;;; +1F93B;MODERN PENTATHLON;So;0;ON;;;;;N;;;;; +1F93C;WRESTLERS;So;0;ON;;;;;N;;;;; +1F93D;WATER POLO;So;0;ON;;;;;N;;;;; +1F93E;HANDBALL;So;0;ON;;;;;N;;;;; +1F940;WILTED FLOWER;So;0;ON;;;;;N;;;;; +1F941;DRUM WITH DRUMSTICKS;So;0;ON;;;;;N;;;;; +1F942;CLINKING GLASSES;So;0;ON;;;;;N;;;;; +1F943;TUMBLER GLASS;So;0;ON;;;;;N;;;;; +1F944;SPOON;So;0;ON;;;;;N;;;;; +1F945;GOAL NET;So;0;ON;;;;;N;;;;; +1F946;RIFLE;So;0;ON;;;;;N;;;;; +1F947;FIRST PLACE MEDAL;So;0;ON;;;;;N;;;;; +1F948;SECOND PLACE MEDAL;So;0;ON;;;;;N;;;;; +1F949;THIRD PLACE MEDAL;So;0;ON;;;;;N;;;;; +1F94A;BOXING GLOVE;So;0;ON;;;;;N;;;;; +1F94B;MARTIAL ARTS UNIFORM;So;0;ON;;;;;N;;;;; +1F950;CROISSANT;So;0;ON;;;;;N;;;;; +1F951;AVOCADO;So;0;ON;;;;;N;;;;; +1F952;CUCUMBER;So;0;ON;;;;;N;;;;; +1F953;BACON;So;0;ON;;;;;N;;;;; +1F954;POTATO;So;0;ON;;;;;N;;;;; +1F955;CARROT;So;0;ON;;;;;N;;;;; +1F956;BAGUETTE BREAD;So;0;ON;;;;;N;;;;; +1F957;GREEN SALAD;So;0;ON;;;;;N;;;;; +1F958;SHALLOW PAN OF FOOD;So;0;ON;;;;;N;;;;; +1F959;STUFFED FLATBREAD;So;0;ON;;;;;N;;;;; +1F95A;EGG;So;0;ON;;;;;N;;;;; +1F95B;GLASS OF MILK;So;0;ON;;;;;N;;;;; +1F95C;PEANUTS;So;0;ON;;;;;N;;;;; +1F95D;KIWIFRUIT;So;0;ON;;;;;N;;;;; +1F95E;PANCAKES;So;0;ON;;;;;N;;;;; 1F980;CRAB;So;0;ON;;;;;N;;;;; 1F981;LION FACE;So;0;ON;;;;;N;;;;; 1F982;SCORPION;So;0;ON;;;;;N;;;;; 1F983;TURKEY;So;0;ON;;;;;N;;;;; 1F984;UNICORN FACE;So;0;ON;;;;;N;;;;; +1F985;EAGLE;So;0;ON;;;;;N;;;;; +1F986;DUCK;So;0;ON;;;;;N;;;;; +1F987;BAT;So;0;ON;;;;;N;;;;; +1F988;SHARK;So;0;ON;;;;;N;;;;; +1F989;OWL;So;0;ON;;;;;N;;;;; +1F98A;FOX FACE;So;0;ON;;;;;N;;;;; +1F98B;BUTTERFLY;So;0;ON;;;;;N;;;;; +1F98C;DEER;So;0;ON;;;;;N;;;;; +1F98D;GORILLA;So;0;ON;;;;;N;;;;; +1F98E;LIZARD;So;0;ON;;;;;N;;;;; +1F98F;RHINOCEROS;So;0;ON;;;;;N;;;;; +1F990;SHRIMP;So;0;ON;;;;;N;;;;; +1F991;SQUID;So;0;ON;;;;;N;;;;; 1F9C0;CHEESE WEDGE;So;0;ON;;;;;N;;;;; 20000;;Lo;0;L;;;;;N;;;;; 2A6D6;;Lo;0;L;;;;;N;;;;; diff --git a/admin/unidata/unidata-gen.el b/admin/unidata/unidata-gen.el index 043bf22..c03f549 100644 --- a/admin/unidata/unidata-gen.el +++ b/admin/unidata/unidata-gen.el @@ -101,6 +101,7 @@ (let* ((table (list nil)) (tail table) (block-names '(("^ Date: Sat Mar 12 13:05:49 2016 +0200 Avoid errors in forms-mode when default major mode is text * lisp/forms.el (forms-mode): Bind change-major-mode-with-file-name to nil when calling set-visited-file-name. (Bug#22982) diff --git a/lisp/forms.el b/lisp/forms.el index c141188..c0b48fd 100644 --- a/lisp/forms.el +++ b/lisp/forms.el @@ -589,7 +589,14 @@ Commands: Equivalent keys in read-only mode: (make-local-variable 'forms--dynamic-text) ;; Prevent accidental overwrite of the control file and auto-save. - (set-visited-file-name nil) + ;; We bind change-major-mode-with-file-name to nil to prevent + ;; set-visited-file-name from calling set-auto-mode, which + ;; might kill all local variables and set forms-file nil, + ;; which will then barf in find-file-noselect below. This can + ;; hapen when the user sets the default major mode that is + ;; different from the Fundamental mode. + (let (change-major-mode-with-file-name) + (set-visited-file-name nil)) ;; Prepare this buffer for further processing. (setq buffer-read-only nil) commit 48196164aa206d057874119cac2025d376566365 Author: Eli Zaretskii Date: Sat Mar 12 11:51:03 2016 +0200 Avoid crashes at startup on systems that CANNOT_DUMP * src/xdisp.c (syms_of_xdisp) : New boolean variable. (init_iterator, reseat_to_string) (Fcurrent_bidi_paragraph_direction) (Fbidi_find_overridden_directionality): Use redisplay--inhibit-bidi instead of purify-flag, to determine when it's safe to reorder bidirectional text. * lisp/loadup.el (redisplay--inhibit-bidi): Set to t at the beginning of the file. Reset to nil when charprop.el is successfully loaded, or when we are going to dump, whichever happens last. (Bug#22975) diff --git a/lisp/loadup.el b/lisp/loadup.el index b620e65..bd47bed 100644 --- a/lisp/loadup.el +++ b/lisp/loadup.el @@ -47,6 +47,13 @@ ;;; Code: +;; This is used in xdisp.c to determine when bidi reordering is safe. +;; (It starts non-nil in temacs, but we set it non-nil here anyway, in +;; case someone loads loadup one more time.) We reset it after +;; successfully loading charprop.el, which defines the Unicode tables +;; bidi.c needs for its job. +(setq redisplay--inhibit-bidi t) + ;; Add subdirectories to the load-path for files that might get ;; autoloaded when bootstrapping. ;; This is because PATH_DUMPLOADSEARCH is just "../lisp". @@ -162,7 +169,8 @@ (load "case-table") ;; This file doesn't exist when building a development version of Emacs ;; from the repository. It is generated just after temacs is built. -(load "international/charprop.el" t) +(if (load "international/charprop.el" t) + (setq redisplay--inhibit-bidi nil)) (load "international/characters") (load "composite") @@ -415,6 +423,9 @@ lost after dumping"))) (if (null (garbage-collect)) (setq pure-space-overflow t)) +;; Make sure we will attempt bidi reordering henceforth. +(setq redisplay--inhibit-bidi nil) + (if (member (car (last command-line-args)) '("dump" "bootstrap")) (progn (message "Dumping under the name emacs") diff --git a/src/xdisp.c b/src/xdisp.c index e5ac650..ce992d4 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -2946,7 +2946,7 @@ init_iterator (struct it *it, struct window *w, character properties needed for reordering are not yet available. */ it->bidi_p = - NILP (Vpurify_flag) + !redisplay__inhibit_bidi && !NILP (BVAR (current_buffer, bidi_display_reordering)) && it->multibyte_p; @@ -6641,7 +6641,7 @@ reseat_to_string (struct it *it, const char *s, Lisp_Object string, loading loadup.el, as the necessary character property tables are not yet available. */ it->bidi_p = - NILP (Vpurify_flag) + !redisplay__inhibit_bidi && !NILP (BVAR (&buffer_defaults, bidi_display_reordering)); if (s == NULL) @@ -21230,7 +21230,7 @@ See also `bidi-paragraph-direction'. */) || NILP (BVAR (buf, enable_multibyte_characters)) /* When we are loading loadup.el, the character property tables needed for bidi iteration are not yet available. */ - || !NILP (Vpurify_flag)) + || redisplay__inhibit_bidi) return Qleft_to_right; else if (!NILP (BVAR (buf, bidi_paragraph_direction))) return BVAR (buf, bidi_paragraph_direction); @@ -21354,7 +21354,7 @@ the `bidi-class' property of a character. */) /* When we are loading loadup.el, the character property tables needed for bidi iteration are not yet available. */ - || !NILP (Vpurify_flag)) + || redisplay__inhibit_bidi) return Qnil; validate_subarray (object, from, to, SCHARS (object), &from_pos, &to_pos); @@ -21382,7 +21382,7 @@ the `bidi-class' property of a character. */) /* When we are loading loadup.el, the character property tables needed for bidi iteration are not yet available. */ - || !NILP (Vpurify_flag)) + || redisplay__inhibit_bidi) return Qnil; set_buffer_temp (buf); @@ -31806,6 +31806,12 @@ display table takes effect; in this case, Emacs does not consult DEFVAR_LISP ("redisplay--variables", Vredisplay__variables, doc: /* A hash-table of variables changing which triggers a thorough redisplay. */); Vredisplay__variables = Qnil; + + DEFVAR_BOOL ("redisplay--inhibit-bidi", redisplay__inhibit_bidi, + doc: /* Non-nil means it is not safe to attempt bidi reordering for display. */); + /* Initialize to t, since we need to disable reordering until + loadup.el successfully loads charprop.el. */ + redisplay__inhibit_bidi = true; } commit 6d8e1f0276fb6cce8d3f1e707bf52c18f8fb70d0 Author: Eli Zaretskii Date: Sat Mar 12 10:32:16 2016 +0200 ; * etc/DEBUG: Improve wording. (Bug#22984) diff --git a/etc/DEBUG b/etc/DEBUG index c2fb5ab..eef67da 100644 --- a/etc/DEBUG +++ b/etc/DEBUG @@ -73,11 +73,11 @@ prompt, to unconditionally load the GDB init file. We recommend using the GUI front-end for GDB provided by Emacs. With it, you can start GDB by typing "M-x gdb RET". This will suggest the -default binary to debug; if you are going to start a new Emacs -process, change it as needed to point to the correct binary. -Alternatively, if you want to attach the debugger to an already -running Emacs process, change the GDB command shown in the minibuffer -to say this: +file name of the default binary to debug; if the suggested default is +not the Emacs binary you want to debug, change the file name as +needed. Alternatively, if you want to attach the debugger to an +already running Emacs process, change the GDB command shown in the +minibuffer to say this: gdb -i=mi -p PID @@ -681,8 +681,9 @@ not exit when it should. On GNU and Unix systems, you can also trying sending Emacs SIGUSR2, which, if 'debug-on-event' has its default value, will cause Emacs to attempt to break it out of its current loop and into the Lisp -debugger. This feature is useful when a C-level debugger is not -conveniently available. +debugger. (See the node "Debugging" in the ELisp manual for the +details about the Lisp debugger.) This feature is useful when a +C-level debugger is not conveniently available. ** If certain operations in Emacs are slower than they used to be, here is some advice for how to find out why. commit 12663618dfb5532d6414f6d12706f3ad441c0a15 Author: Eli Zaretskii Date: Sat Mar 12 10:26:21 2016 +0200 Fix documentation of seq.el functions * doc/lispref/sequences.texi (Sequence Functions): Fix typos. Add cross-references. Fix formatting. (Bug#22992) diff --git a/doc/lispref/sequences.texi b/doc/lispref/sequences.texi index 9869fe4..a54ab10 100644 --- a/doc/lispref/sequences.texi +++ b/doc/lispref/sequences.texi @@ -435,23 +435,27 @@ a predicate, this should be a function of one argument. The @file{seq.el} library can be extended to work with additional types of sequential data-structures. For that purpose, all functions -are defined using @code{cl-defgeneric}. +are defined using @code{cl-defgeneric}. @xref{Generic Functions}, for +more details about using @code{cl-defgeneric} for adding extensions. @defun seq-elt sequence index - This function the element at the index @var{index} in -@var{sequence}. @var{index} can be an integer from zero up to the -length of @var{sequence} minus one. For out-of-range values on -built-in sequence types, @code{seq-elt} behaves like @code{elt}. -@xref{Definition of elt}. + This function returns the element of @var{sequence} at the specified +@var{index}, which is an integer whose valid value range is zero to +one less than the length of @var{sequence}. For out-of-range values +on built-in sequence types, @code{seq-elt} behaves like @code{elt}. +For the details, see @ref{Definition of elt}. @example @group (seq-elt [1 2 3 4] 2) @result{} 3 @end group +@end example - @code{seq-elt} returns settable places using @code{setf}. + @code{seq-elt} returns places settable using @code{setf} +(@pxref{Setting Generalized Variables}). +@example @group (setq vec [1 2 3 4]) (setf (seq-elt vec 2) 5) @@ -552,7 +556,7 @@ starting from the first one for which @var{predicate} returns @code{nil}. @defun seq-do function sequence This function applies @var{function} to each element of -@var{sequence} in turn (presumably for side effects) and returns +@var{sequence} in turn (presumably for side effects), and returns @var{sequence}. @end defun @@ -574,9 +578,10 @@ element of @var{sequence}. The returned value is a list. @defun seq-mapn function &rest sequences This function returns the result of applying @var{function} to each -element of @var{sequences}. The arity of @var{function} must match -the number of sequences. Mapping stops at the shortest sequence, and -the returned value is a list. +element of @var{sequences}. The arity (@pxref{What Is a Function, +sub-arity}) of @var{function} must match the number of sequences. +Mapping stops at the end of the shortest sequence, and the returned +value is a list. @example @group @@ -675,13 +680,13 @@ applying @var{predicate} to each element of @var{sequence} in turn. @end defun @defun seq-find predicate sequence &optional default - This function returns the first element for which @var{predicate} -returns non-@code{nil} in @var{sequence}. If no element matches -@var{predicate}, @var{default} is returned. + This function returns the first element in @var{sequence} for which +@var{predicate} returns non-@code{nil}. If no element matches +@var{predicate}, the function returns @var{default}. Note that this function has an ambiguity if the found element is -identical to @var{default}, as it cannot be known if an element was -found or not. +identical to @var{default}, as in that case it cannot be known whether +an element was found or not. @example @group @@ -854,7 +859,7 @@ list if @var{type} is @code{nil}. This function returns a list of the elements of @var{sequence} grouped into sub-sequences of length @var{n}. The last sequence may contain less elements than @var{n}. @var{n} must be an integer. If -@var{n} is a negative integer or 0, nil is returned. +@var{n} is a negative integer or 0, the return value is @code{nil}. @example @group @@ -932,9 +937,9 @@ of type @var{type}. @var{type} can be one of the following symbols: @end defun @defun seq-min sequence - This function returns the smallest element of -@var{sequence}. @var{sequence} must be a sequence of numbers or -markers. + This function returns the smallest element of @var{sequence}. The +elements of @var{sequence} must be numbers or markers +(@pxref{Markers}). @example @group @@ -949,9 +954,8 @@ markers. @end defun @defun seq-max sequence - This function returns the largest element of -@var{sequence}. @var{sequence} must be a sequence of numbers or -markers. + This function returns the largest element of @var{sequence}. The +elements of @var{sequence} must be numbers or markers. @example @group @@ -967,16 +971,16 @@ markers. @defmac seq-doseq (var sequence) body@dots{} @cindex sequence iteration - This macro is like @code{dolist}, except that @var{sequence} can be a list, -vector or string (@pxref{Iteration} for more information about the -@code{dolist} macro). This is primarily useful for side-effects. + This macro is like @code{dolist} (@pxref{Iteration, dolist}), except +that @var{sequence} can be a list, vector or string. This is +primarily useful for side-effects. @end defmac @defmac seq-let arguments sequence body@dots{} @cindex sequence destructuring This macro binds the variables defined in @var{arguments} to the -elements of the sequence @var{sequence}. @var{arguments} can itself -include sequences allowing for nested destructuring. +elements of @var{sequence}. @var{arguments} can themselves include +sequences, allowing for nested destructuring. The @var{arguments} sequence can also include the @code{&rest} marker followed by a variable name to be bound to the rest of commit 576e09e150bceb371b22c4bb26d12991737f689d Author: Dmitry Gutov Date: Sat Mar 12 00:18:42 2016 +0200 Support Ruby 2.3.0's safe navigation operator * lisp/progmodes/ruby-mode.el (ruby-smie--forward-token) (ruby-smie--backward-token): Tokenize '&.' as '.'. (ruby-smie--implicit-semi-p): Check for possible '&' before '.'. * test/indent/ruby.rb: Add an example using safe navigation operator. Fix a syntax error in existing example. diff --git a/lisp/progmodes/ruby-mode.el b/lisp/progmodes/ruby-mode.el index be8f96d..36c1aed 100644 --- a/lisp/progmodes/ruby-mode.el +++ b/lisp/progmodes/ruby-mode.el @@ -444,7 +444,7 @@ It is used when `ruby-encoding-magic-comment-style' is set to `custom'." '("iuwu-mod" "and" "or"))) (save-excursion (forward-comment 1) - (eq (char-after) ?.)))))) + (looking-at "&?\\.")))))) (defun ruby-smie--redundant-do-p (&optional skip) (save-excursion @@ -535,6 +535,7 @@ It is used when `ruby-encoding-magic-comment-style' is set to `custom'." (line-end-position)) (ruby-smie--forward-token)) ;Fully redundant. (t ";"))) + ((equal tok "&.") ".") (t tok))))))))) (defun ruby-smie--backward-token () @@ -580,6 +581,7 @@ It is used when `ruby-encoding-magic-comment-style' is set to `custom'." (line-end-position)) (ruby-smie--backward-token)) ;Fully redundant. (t ";"))) + ((equal tok "&.") ".") (t tok))))))) (defun ruby-smie--indent-to-stmt () diff --git a/test/indent/ruby.rb b/test/indent/ruby.rb index 585263d..51923f7 100644 --- a/test/indent/ruby.rb +++ b/test/indent/ruby.rb @@ -24,8 +24,8 @@ def foo # Don't propertize percent literals inside strings. "(%s, %s)" % [123, 456] -"abc/#{def}ghi" -"abc\#{def}ghi" +"abc/#{ddf}ghi" +"abc\#{ddf}ghi" # Or inside comments. x = # "tot %q/to"; = @@ -303,8 +303,9 @@ def begin bar foo_bar_tee(1, 2, 3) - .qux.bar - .tee + .qux&.bar + .tee.bar + &.tee foo do bar