]> code.delx.au - gnu-emacs/blobdiff - src/unexaix.c
(server-visit-files): If `minibuffer-auto-raise' has been set to t, respect it.
[gnu-emacs] / src / unexaix.c
index 17df5b5174ba6b4c9b5a3bd0b0fc2d2ae68c9ac5..4785aa1dcb3722d1d6738f985b603917d939c2a4 100644 (file)
@@ -1,5 +1,6 @@
 /* Dump an executable image.
-   Copyright (C) 1985, 1986, 1987, 1988, 1999 Free Software Foundation, Inc.
+   Copyright (C) 1985, 1986, 1987, 1988, 1999, 2002, 2003, 2004,
+                 2005, 2006 Free Software Foundation, Inc.
 
 This file is part of GNU Emacs.
 
@@ -15,8 +16,8 @@ GNU General Public License for more details.
 
 You should have received a copy of the GNU General Public License
 along with GNU Emacs; see the file COPYING.  If not, write to
-the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA.
+the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+Boston, MA 02110-1301, USA.
 
 In other words, you are welcome to use, share and improve this program.
 You are forbidden to forbid anyone else to use, share and improve
@@ -175,7 +176,7 @@ int unexec (char *new_name, char *a_name,
       || unrelocate_symbols (new, a_out, a_name, new_name) < 0)
     {
       close (new);
-      return -1;       
+      return -1;
     }
 
   close (new);
@@ -358,7 +359,7 @@ make_hdr (int new, int a_out,
            s->s_scnptr += bias;
            ptr = s->s_scnptr;
          }
-  
+
        ptr = ptr + s->s_size;
       }
   }
@@ -413,7 +414,7 @@ make_hdr (int new, int a_out,
 }
 \f
 /* ****************************************************************
+
  *
  * Copy the text and data segments from memory to the new a.out
  */
@@ -589,7 +590,7 @@ unrelocate_symbols (int new, int a_out, char *a_name, char *new_name)
 #ifndef ALIGN_DATA_RELOC
   ulong d_reloc = (ulong) &_data - f_ohdr.data_start;
 #else
-  /* This worked (and was needed) before AIX 4.2. 
+  /* This worked (and was needed) before AIX 4.2.
      I have no idea why. -- Mike */
   ulong d_reloc = (ulong) &_data - ALIGN(f_ohdr.data_start, 2);
 #endif
@@ -676,3 +677,6 @@ unrelocate_symbols (int new, int a_out, char *a_name, char *new_name)
     }
   return 0;
 }
+
+/* arch-tag: 0783857a-7c2d-456f-a426-58b722d69fd0
+   (do not change this comment) */