This is an automated email from the ASF dual-hosted git repository.

mseidel pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/openoffice.git


The following commit(s) were added to refs/heads/trunk by this push:
     new 7380699756 pre-commit whitespace clean up for asm files (#462)
7380699756 is described below

commit 7380699756cb829100248f352fc3e1e35333afd8
Author: John Bampton <[email protected]>
AuthorDate: Sat Jan 24 21:53:35 2026 +1000

    pre-commit whitespace clean up for asm files (#462)
    
    Enforced 3 hooks for asm files:
    
    - end-of-file-fixer
    - mixed-line-ending
    - trailing-whitespace
---
 .pre-commit-config.yaml                                |  6 +++---
 main/basic/source/runtime/wnt.asm                      |  8 ++++----
 main/bridges/source/cpp_uno/msvc_win64_x86-64/call.asm | 10 +++++-----
 3 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index 1ca2bc1f54..0ffff86737 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -56,15 +56,15 @@ repos:
         description: ensures that links to vcs websites are permalinks
       - id: end-of-file-fixer
         description: makes sure files end in a newline and only a newline
-        files: 
(m|M)akefile$|\.(asp|bas|bat|c|cl|cmd|common|component|cpp|cxx|dxp|el|h|hrc|hxx|idl|in|ini|java|js|lst|m|m4|map|md|mk|mm|mod|pas|php|pl|pm|pmk|py|rc|rdf|rng|sdi|sh|src|ulf|vbs|xba|xcs|xcu|xdl|xhp|xlb|xmi|xml|xsd|xslt?|ya?ml)$|^ext_libraries/.*$|^test/.*$
+        files: 
(m|M)akefile$|\.(asm|asp|bas|bat|c|cl|cmd|common|component|cpp|cxx|dxp|el|h|hrc|hxx|idl|in|ini|java|js|lst|m|m4|map|md|mk|mm|mod|pas|php|pl|pm|pmk|py|rc|rdf|rng|sdi|sh|src|ulf|vbs|xba|xcs|xcu|xdl|xhp|xlb|xmi|xml|xsd|xslt?|ya?ml)$|^ext_libraries/.*$|^test/.*$
       - id: fix-byte-order-marker
         description: removes UTF-8 byte order marker
       - id: mixed-line-ending
         description: replaces or checks mixed line ending
-        files: 
\.(asp|bas|c|cl|cmd|common|component|cpp|cxx|dxp|el|h|hrc|hxx|idl|in|ini|java|js|lst|m|m4|map|md|mk|mm|mod|pas|php|pl|pm|pmk|py|rc|rdf|rng|sdi|sh|src|ulf|vbs|xba|xcs|xcu|xdl|xhp|xlb|xmi|xsd|xslt?|ya?ml)$|^main/accessibility/.*$|^main/afms/.*$|^main/animations/.*$|^main/apache-commons/.*$|^test/testgui/.*$
+        files: 
\.(asm|asp|bas|c|cl|cmd|common|component|cpp|cxx|dxp|el|h|hrc|hxx|idl|in|ini|java|js|lst|m|m4|map|md|mk|mm|mod|pas|php|pl|pm|pmk|py|rc|rdf|rng|sdi|sh|src|ulf|vbs|xba|xcs|xcu|xdl|xhp|xlb|xmi|xsd|xslt?|ya?ml)$|^main/accessibility/.*$|^main/afms/.*$|^main/animations/.*$|^main/apache-commons/.*$|^test/testgui/.*$
       - id: trailing-whitespace
         description: trims trailing whitespace
-        files: 
(m|M)akefile$|\.(asp|bas|bat|c|cl|cmd|common|component|cpp|cxx|dxp|el|h|hrc|hxx|idl|in|ini|java|js|lst|m|m4|map|md|mk|mm|mod|pas|php|pl|pm|pmk|py|rc|rdf|rng|sdi|sh|src|ulf|vbs|xba|xcs|xcu|xdl|xhp|xlb|xmi|xml|xsd|ya?ml)$
+        files: 
(m|M)akefile$|\.(asm|asp|bas|bat|c|cl|cmd|common|component|cpp|cxx|dxp|el|h|hrc|hxx|idl|in|ini|java|js|lst|m|m4|map|md|mk|mm|mod|pas|php|pl|pm|pmk|py|rc|rdf|rng|sdi|sh|src|ulf|vbs|xba|xcs|xcu|xdl|xhp|xlb|xmi|xml|xsd|ya?ml)$
         args: [--markdown-linebreak-ext=md]
   - repo: https://github.com/codespell-project/codespell
     rev: v2.4.1
diff --git a/main/basic/source/runtime/wnt.asm 
b/main/basic/source/runtime/wnt.asm
index 9e123d63ef..6a66200707 100644
--- a/main/basic/source/runtime/wnt.asm
+++ b/main/basic/source/runtime/wnt.asm
@@ -1,5 +1,5 @@
 ;**************************************************************
-;  
+;
 ;  Licensed to the Apache Software Foundation (ASF) under one
 ;  or more contributor license agreements.  See the NOTICE file
 ;  distributed with this work for additional information
@@ -7,16 +7,16 @@
 ;  to you under the Apache License, Version 2.0 (the
 ;  "License"); you may not use this file except in compliance
 ;  with the License.  You may obtain a copy of the License at
-;  
+;
 ;    http://www.apache.org/licenses/LICENSE-2.0
-;  
+;
 ;  Unless required by applicable law or agreed to in writing,
 ;  software distributed under the License is distributed on an
 ;  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 ;  KIND, either express or implied.  See the License for the
 ;  specific language governing permissions and limitations
 ;  under the License.
-;  
+;
 ;**************************************************************
 
 .386
diff --git a/main/bridges/source/cpp_uno/msvc_win64_x86-64/call.asm 
b/main/bridges/source/cpp_uno/msvc_win64_x86-64/call.asm
index 4e5cd0c326..beb2797521 100644
--- a/main/bridges/source/cpp_uno/msvc_win64_x86-64/call.asm
+++ b/main/bridges/source/cpp_uno/msvc_win64_x86-64/call.asm
@@ -6,16 +6,16 @@
 ; to you under the Apache License, Version 2.0 (the
 ; "License"); you may not use this file except in compliance
 ; with the License.  You may obtain a copy of the License at
-; 
+;
 ;   http://www.apache.org/licenses/LICENSE-2.0
-; 
+;
 ; Unless required by applicable law or agreed to in writing,
 ; software distributed under the License is distributed on an
 ; "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 ; KIND, either express or implied.  See the License for the
 ; specific language governing permissions and limitations
 ; under the License.
-; 
+;
 
 
 typelib_TypeClass_VOID equ 0
@@ -79,7 +79,7 @@ privateSnippetExecutor PROC FRAME
        .ALLOCSTACK(48)
        .ENDPROLOG
 
-       ; 4th param: sal_uInt64 *pRegisterReturn 
+       ; 4th param: sal_uInt64 *pRegisterReturn
        lea r9, -8[rbp]
 
        ; 3rd param: sal_Int32 nVtableOffset
@@ -177,7 +177,7 @@ copyStack:
 
 stackIsEmpty:
        sub rsp, 32       ; we still need shadow space
-       
+
 callMethod:
        ; Find the method pointer
        mov rax, 16[rbp]

Reply via email to