Skip to content

Commit b1955ec

Browse files
author
Yuuki Harano
committed
Merge branch 'master' of https://github.com/emacs-mirror/emacs into pgtk
2 parents 26b167d + 4f2b415 commit b1955ec

36 files changed

+421
-331
lines changed

admin/notes/unicode

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,11 +256,19 @@ nontrivial changes to the build process.
256256

257257
etc/tutorials/TUTORIAL.ja
258258

259+
* iso-2022-7bit
260+
261+
This file contains multiple Chinese charsets, and converting it
262+
to UTF-8 would lose the charset property and would change the
263+
code's behavior. Although this could be worked around by
264+
propertizing the strings, that hasn't been done.
265+
266+
lisp/international/titdic-cnv.el
267+
259268
* utf-8-emacs
260269

261270
These files contain characters that cannot be encoded in UTF-8.
262271

263-
lisp/international/titdic-cnv.el
264272
lisp/language/ethio-util.el
265273
lisp/language/ethiopic.el
266274
lisp/language/ind-util.el

doc/misc/tramp.texi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3840,8 +3840,8 @@ Where is the latest @value{tramp}?
38403840
@item
38413841
Which systems does it work on?
38423842

3843-
The package works successfully on Emacs 24, Emacs 25, Emacs 26, and
3844-
Emacs 27.
3843+
The package works successfully on Emacs 24, Emacs 25, Emacs 26, Emacs
3844+
27, and Emacs 28.
38453845

38463846
While Unix and Unix-like systems are the primary remote targets,
38473847
@value{tramp} has equal success connecting to other platforms, such as

doc/misc/trampver.texi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
@c In the Tramp GIT, the version numbers are auto-frobbed from
99
@c tramp.el, and the bug report address is auto-frobbed from
1010
@c configure.ac.
11-
@set trampver 2.4.3.27.1
11+
@set trampver 2.4.4-pre
1212
@set tramp-bug-report-address tramp-devel@@gnu.org
1313
@set emacsver 24.4
1414

lisp/autorevert.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -733,8 +733,8 @@ system.")
733733
(null buffer-file-name))
734734
(auto-revert-notify-rm-watch)
735735
;; Restart the timer if it wasn't running.
736-
(unless auto-revert-timer)
737-
(auto-revert-set-timer))))
736+
(unless auto-revert-timer
737+
(auto-revert-set-timer)))))
738738

739739
;; Loop over all buffers, in order to find the intended one.
740740
(cl-dolist (buffer buffers)

lisp/cedet/ede/cpp-root.el

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -478,21 +478,6 @@ Argument COMMAND is the command to use for compiling the target."
478478
"Don't rescan this project from the sources."
479479
(message "cpp-root has nothing to rescan."))
480480

481-
;;; Quick Hack
482-
(defun ede-create-lots-of-projects-under-dir (dir projfile &rest attributes)
483-
"Create a bunch of projects under directory DIR.
484-
PROJFILE is a file name sans directory that indicates a subdirectory
485-
is a project directory.
486-
Generic ATTRIBUTES, such as :include-path can be added.
487-
Note: This needs some work."
488-
(let ((files (directory-files dir t)))
489-
(dolist (F files)
490-
(if (file-exists-p (expand-file-name projfile F))
491-
`(ede-cpp-root-project (file-name-nondirectory F)
492-
:name (file-name-nondirectory F)
493-
:file (expand-file-name projfile F)
494-
attributes)))))
495-
496481
(provide 'ede/cpp-root)
497482

498483
;; Local variables:

lisp/cedet/ede/pconf.el

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,9 @@ don't do it. A value of nil means to just do it.")
5656
(and (eq ede-pconf-create-file-query 'ask)
5757
(not (eq ede-pconf-create-file-query 'never))
5858
(not (y-or-n-p
59-
(format "I had to create the %s file for you. Ok? " file)))
60-
(error "Quit")))))))
59+
(format "I had to create the %s file for you. Ok? "
60+
file))))
61+
(error "Quit"))))))
6162

6263

6364
(cl-defmethod ede-proj-configure-synchronize ((this ede-proj-project))

lisp/cedet/srecode/semantic.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ variable default values, and other things."
201201
(let ((tag (or srecode-semantic-selected-tag
202202
(srecode-semantic-tag-from-kill-ring))))
203203
(when (not tag)
204-
"No tag for current template. Use the semantic kill-ring.")
204+
(error "No tag for current template. Use the semantic kill-ring."))
205205
(srecode-semantic-apply-tag-to-dict
206206
(srecode-semantic-tag (semantic-tag-name tag)
207207
:prime tag)

lisp/emacs-lisp/bytecomp.el

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -719,14 +719,15 @@ otherwise pop it")
719719
"to make a binding to record entire window configuration")
720720
(byte-defop 140 0 byte-save-restriction
721721
"to make a binding to record the current buffer clipping restrictions")
722-
(byte-defop 141 -1 byte-catch
722+
(byte-defop 141 -1 byte-catch-OBSOLETE ; Not generated since Emacs 25.
723723
"for catch. Takes, on stack, the tag and an expression for the body")
724724
(byte-defop 142 -1 byte-unwind-protect
725725
"for unwind-protect. Takes, on stack, an expression for the unwind-action")
726726

727727
;; For condition-case. Takes, on stack, the variable to bind,
728728
;; an expression for the body, and a list of clauses.
729-
(byte-defop 143 -2 byte-condition-case)
729+
;; Not generated since Emacs 25.
730+
(byte-defop 143 -2 byte-condition-case-OBSOLETE)
730731

731732
(byte-defop 144 0 byte-temp-output-buffer-setup-OBSOLETE)
732733
(byte-defop 145 -1 byte-temp-output-buffer-show-OBSOLETE)

lisp/emacs-lisp/tabulated-list.el

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -547,10 +547,10 @@ Return the column number after insertion."
547547
;; Don't truncate to `width' if the next column is align-right
548548
;; and has some space left, truncate to `available-space' instead.
549549
(when (and not-last-col
550-
(> label-width available-space)
551-
(setq label (truncate-string-to-width
552-
label available-space nil nil t t)
553-
label-width available-space)))
550+
(> label-width available-space))
551+
(setq label (truncate-string-to-width
552+
label available-space nil nil t t)
553+
label-width available-space))
554554
(setq label (bidi-string-mark-left-to-right label))
555555
(when (and right-align (> width label-width))
556556
(let ((shift (- width label-width)))

lisp/filesets.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1645,10 +1645,10 @@ Replace <file-name> or <<file-name>> with filename."
16451645
(dolist (this args txt)
16461646
(setq txt
16471647
(concat txt
1648+
(if (equal txt "") "" " ")
16481649
(filesets-run-cmd--repl-fn
16491650
this
16501651
(lambda (this)
1651-
(if (equal txt "") "" " ")
16521652
(format "%s" this))))))))
16531653
(cmd (concat fn " " args)))
16541654
(filesets-cmd-show-result

0 commit comments

Comments
 (0)