Skip to content

Commit

Permalink
Use current Emacs version in make_*_out scripts. (#360)
Browse files Browse the repository at this point in the history
This shouldn’t have any semantic effect, but is a bit less confusing.
  • Loading branch information
phst authored Jul 7, 2022
1 parent 6c99d41 commit 66171fe
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions testdata/make_compile_out
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

# Copyright 2020, 2021 Google LLC
# Copyright 2020, 2021, 2022 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 All @@ -19,7 +19,7 @@
set -eu

# Bazel formats output differently when invoked from Emacs.
export INSIDE_EMACS='26.1,compile'
export INSIDE_EMACS='28.1,compile'

workspace="$(bazel info workspace)" || exit
testdata="${workspace:?}/testdata"
Expand Down
4 changes: 2 additions & 2 deletions testdata/make_coverage_out
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

# Copyright 2021 Google LLC
# Copyright 2021, 2022 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 All @@ -20,7 +20,7 @@
set -eu

# Bazel formats output differently when invoked from Emacs.
export INSIDE_EMACS='27.2,compile'
export INSIDE_EMACS='28.1,compile'

workspace="$(bazel info workspace)" || exit
testdata="${workspace:?}/testdata"
Expand Down
4 changes: 2 additions & 2 deletions testdata/make_fix_visibility_out
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

# Copyright 2020, 2021 Google LLC
# Copyright 2020, 2021, 2022 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 All @@ -19,7 +19,7 @@
set -eu

# Bazel formats output differently when invoked from Emacs.
export INSIDE_EMACS='27.2,compile'
export INSIDE_EMACS='28.1,compile'

workspace="$(bazel info workspace)" || exit
testdata="${workspace:?}/testdata"
Expand Down

0 comments on commit 66171fe

Please sign in to comment.