Skip to content

Commit

Permalink
Remove workarounds for https://debbugs.gnu.org/52281
Browse files Browse the repository at this point in the history
  • Loading branch information
phst committed Feb 23, 2025
1 parent caae40d commit 4b6e5e6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
3 changes: 1 addition & 2 deletions elisp/private/tools/compile.el
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
;;; compile.el --- byte-compile Emacs Lisp files -*- lexical-binding: t; -*-

;; Copyright 2020, 2021, 2022, 2023, 2024 Google LLC
;; Copyright 2020, 2021, 2022, 2023, 2024, 2025 Google LLC
;;
;; Licensed under the Apache License, Version 2.0 (the "License");
;; you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -66,7 +66,6 @@ treat warnings as errors."
;; Ensure filenames in the output are relative to the current
;; directory.
(byte-compile-root-dir default-directory)
(warning-fill-column 1000) ; https://debbugs.gnu.org/52281
(byte-compile-dest-file-function (lambda (_) out))
(byte-compile-error-on-warn elisp/fatal--warnings)
(elisp/current-repository current-repo)
Expand Down
1 change: 0 additions & 1 deletion elisp/private/tools/ert-runner.el
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ TESTBRIDGE_TEST_ONLY environmental variable as test selector."
elisp/ert/edebug--before
elisp/ert/edebug--after)
(bound-and-true-p edebug-behavior-alist)))
(warning-fill-column 1000) ; https://debbugs.gnu.org/52281
(source-dir (getenv "TEST_SRCDIR"))
(temp-dir (getenv "TEST_TMPDIR"))
(temporary-file-directory
Expand Down
5 changes: 2 additions & 3 deletions elisp/private/tools/export-org.el
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
;;; export-org.el --- export Org-mode file to Texinfo manual -*- lexical-binding: t; -*-

;; Copyright 2021, 2022, 2023, 2024 Google LLC
;; Copyright 2021, 2022, 2023, 2024, 2025 Google LLC
;;
;; Licensed under the Apache License, Version 2.0 (the "License");
;; you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -34,8 +34,7 @@
(setq command-line-args-left nil)
(cl-callf expand-file-name input)
(cl-callf expand-file-name output)
(let ((warning-fill-column 1000) ; https://debbugs.gnu.org/52281
(coding-system-for-read 'utf-8-unix)
(let ((coding-system-for-read 'utf-8-unix)
(coding-system-for-write 'utf-8-unix)
(format-alist nil)
(after-insert-file-functions nil)
Expand Down

0 comments on commit 4b6e5e6

Please sign in to comment.