diff options
-rw-r--r-- | nt/ChangeLog | 4 | ||||
-rw-r--r-- | nt/emacs.manifest | 12 |
2 files changed, 15 insertions, 1 deletions
diff --git a/nt/ChangeLog b/nt/ChangeLog index c4fddfee0b7..664d2be8b86 100644 --- a/nt/ChangeLog +++ b/nt/ChangeLog @@ -1,3 +1,7 @@ +2010-04-20 Lewis Perin <perin@panix.com> (tiny change) + + * emacs.manifest: Add trustInfo section to Windows manifest. + 2010-03-10 Chong Yidong <cyd@stupidchicken.com> * Branch for 23.2. diff --git a/nt/emacs.manifest b/nt/emacs.manifest index 4c1894c335f..64c6f1edfb7 100644 --- a/nt/emacs.manifest +++ b/nt/emacs.manifest @@ -8,4 +8,14 @@ language="*"/> </dependentAssembly> </dependency> -</assembly>
\ No newline at end of file + <assemblyIdentity version="1.0.0.0" processorArchitecture="X86" + name="emacs" type="win32"/> + <description>GNU Emacs</description> + <trustInfo xmlns="urn:schemas-microsoft-com:asm.v3"> + <security> + <requestedPrivileges> + <requestedExecutionLevel level="asInvoker"/> + </requestedPrivileges> + </security> + </trustInfo> +</assembly> |