diff mbox series

[wwwdocs] Push lang="en" into individual pages instead of redefining the <html> tag (via MetaHTML)

Message ID alpine.LSU.2.21.1809301635220.3785@anthias.pfeifer.com
State New
Headers show
Series [wwwdocs] Push lang="en" into individual pages instead of redefining the <html> tag (via MetaHTML) | expand

Commit Message

Gerald Pfeifer Sept. 30, 2018, 6:11 p.m. UTC
This is a follow-up on the initial simplification I worked on this
morning, cf. https://gcc.gnu.org/ml/gcc-patches/2018-09/msg01782.html .

With this we no longer set the lang attribute to "en" via our global 
style/MetaHTML pre-processing, but push lang="en" down into the <html> 
tags of all individual pages.  This avoids redefining <html> to begin 
with.  Which in turn also means less to do for David's script (hopefully).

Committed.

Gerald
diff mbox series

Patch

Index: style.mhtml
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/style.mhtml,v
retrieving revision 1.158
diff -u -r1.158 style.mhtml
--- style.mhtml	30 Sep 2018 07:29:40 -0000	1.158
+++ style.mhtml	30 Sep 2018 14:35:52 -0000
@@ -10,18 +10,6 @@ 
   <unset-var XHTML>
 >
 
-;;; Redefine the <html> tag.
-
-<define-container html>
-  <verbatim>
-   <html lang="en">
-  </verbatim>
-  %body
-  <verbatim>
-   </html>
-  </verbatim>
-</define-container>
-
 ;;; Redefine the <head> tag so that we can add default <meta /> headers.
 
 <define-container head>


Index: about.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/about.html,v
retrieving revision 1.32
diff -u -r1.32 about.html
--- about.html	3 Sep 2018 10:08:07 -0000	1.32
+++ about.html	30 Sep 2018 14:20:38 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC: About</title>
Index: backends.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/backends.html,v
retrieving revision 1.80
diff -u -r1.80 backends.html
--- backends.html	1 Sep 2018 23:41:59 -0000	1.80
+++ backends.html	30 Sep 2018 14:20:38 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Status of Supported Architectures from Maintainers' Point of View</title>
Index: badspammer.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/badspammer.html,v
retrieving revision 1.9
diff -u -r1.9 badspammer.html
--- badspammer.html	1 Sep 2018 23:41:59 -0000	1.9
+++ badspammer.html	30 Sep 2018 14:20:39 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC</title>
Index: branch-closing.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/branch-closing.html,v
retrieving revision 1.3
diff -u -r1.3 branch-closing.html
--- branch-closing.html	1 Sep 2018 23:41:59 -0000	1.3
+++ branch-closing.html	30 Sep 2018 14:20:39 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Closing a GCC Release Branch</title>
Index: branching.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/branching.html,v
retrieving revision 1.36
diff -u -r1.36 branching.html
--- branching.html	1 Sep 2018 23:41:59 -0000	1.36
+++ branching.html	30 Sep 2018 14:20:39 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Branching for a GCC Release</title>
Index: buildstat.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/buildstat.html,v
retrieving revision 1.29
diff -u -r1.29 buildstat.html
--- buildstat.html	1 Sep 2018 23:41:59 -0000	1.29
+++ buildstat.html	30 Sep 2018 14:20:39 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Build status for GCC</title>
Index: c99status.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/c99status.html,v
retrieving revision 1.67
diff -u -r1.67 c99status.html
--- c99status.html	11 Sep 2018 19:32:09 -0000	1.67
+++ c99status.html	30 Sep 2018 14:20:39 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Status of C99 features in GCC</title>
Index: codingconventions.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/codingconventions.html,v
retrieving revision 1.84
diff -u -r1.84 codingconventions.html
--- codingconventions.html	2 Sep 2018 20:26:14 -0000	1.84
+++ codingconventions.html	30 Sep 2018 14:20:39 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC Coding Conventions</title>
Index: codingrationale.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/codingrationale.html,v
retrieving revision 1.6
diff -u -r1.6 codingrationale.html
--- codingrationale.html	1 Sep 2018 23:42:00 -0000	1.6
+++ codingrationale.html	30 Sep 2018 14:20:40 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC Coding Conventions Rationale and Discussion</title>
Index: contribute.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/contribute.html,v
retrieving revision 1.91
diff -u -r1.91 contribute.html
--- contribute.html	3 Sep 2018 10:08:08 -0000	1.91
+++ contribute.html	30 Sep 2018 14:20:40 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 <head>
 <meta name="description" content="Contributing to the GCC project." />
 <meta name="keywords"
Index: contributewhy.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/contributewhy.html,v
retrieving revision 1.11
diff -u -r1.11 contributewhy.html
--- contributewhy.html	1 Sep 2018 23:42:00 -0000	1.11
+++ contributewhy.html	30 Sep 2018 14:20:40 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Extending and Contributing to GCC</title>
Index: develop.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/develop.html,v
retrieving revision 1.186
diff -u -r1.186 develop.html
--- develop.html	1 Sep 2018 23:42:00 -0000	1.186
+++ develop.html	30 Sep 2018 14:20:40 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 <head>
 <title>GCC Development Plan</title>
 <link rel="stylesheet" type="text/css" href="https://gcc.gnu.org/gcc.css" />
Index: extensions.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/extensions.html,v
retrieving revision 1.61
diff -u -r1.61 extensions.html
--- extensions.html	1 Sep 2018 23:42:00 -0000	1.61
+++ extensions.html	30 Sep 2018 14:20:40 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC extensions</title>
Index: faq.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/faq.html,v
retrieving revision 1.230
diff -u -r1.230 faq.html
--- faq.html	2 Sep 2018 21:36:04 -0000	1.230
+++ faq.html	30 Sep 2018 14:20:40 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC Frequently Asked Questions</title>
Index: frontends.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/frontends.html,v
retrieving revision 1.43
diff -u -r1.43 frontends.html
--- frontends.html	1 Sep 2018 23:42:00 -0000	1.43
+++ frontends.html	30 Sep 2018 14:20:40 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC Front Ends</title>
Index: gcc-2.96.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-2.96.html,v
retrieving revision 1.6
diff -u -r1.6 gcc-2.96.html
--- gcc-2.96.html	1 Sep 2018 23:42:00 -0000	1.6
+++ gcc-2.96.html	30 Sep 2018 14:20:40 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 2.96</title>
Index: gcc.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc.html,v
retrieving revision 1.3
diff -u -r1.3 gcc.html
--- gcc.html	2 Sep 2018 11:25:31 -0000	1.3
+++ gcc.html	30 Sep 2018 14:20:41 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 <head>
 <meta http-equiv="refresh" content="0; url=index.html">
 <title>GCC, the GNU Compiler Collection</title>
Index: gccmission.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gccmission.html,v
retrieving revision 1.12
diff -u -r1.12 gccmission.html
--- gccmission.html	1 Sep 2018 23:42:00 -0000	1.12
+++ gccmission.html	30 Sep 2018 14:20:41 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC Development Mission Statement (1999-04-22)</title>
Index: index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/index.html,v
retrieving revision 1.1101
diff -u -r1.1101 index.html
--- index.html	29 Sep 2018 16:53:04 -0000	1.1101
+++ index.html	30 Sep 2018 14:20:41 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <meta name="google-site-verification" content="FUv_3eEIkimd6LAoWned4TPMqmKKQmw3aA2_PBJ5SAY" />
Index: lists.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/lists.html,v
retrieving revision 1.117
diff -u -r1.117 lists.html
--- lists.html	27 Sep 2018 21:59:36 -0000	1.117
+++ lists.html	30 Sep 2018 14:20:41 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC mailing lists</title>
Index: mirrors.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/mirrors.html,v
retrieving revision 1.253
diff -u -r1.253 mirrors.html
--- mirrors.html	1 Sep 2018 23:42:00 -0000	1.253
+++ mirrors.html	30 Sep 2018 14:20:41 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC mirror sites</title>
Index: news.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/news.html,v
retrieving revision 1.164
diff -u -r1.164 news.html
--- news.html	2 Sep 2018 20:28:17 -0000	1.164
+++ news.html	30 Sep 2018 14:20:42 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC news and announcements</title>
Index: readings.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/readings.html,v
retrieving revision 1.303
diff -u -r1.303 readings.html
--- readings.html	29 Sep 2018 12:28:02 -0000	1.303
+++ readings.html	30 Sep 2018 14:20:42 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <!-- GCC maintainers, do not hesitate to update/contribute entries as long
      as they directly point to technical documentation.  No links to generic
Index: releases.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/releases.html,v
retrieving revision 1.137
diff -u -r1.137 releases.html
--- releases.html	2 Sep 2018 09:02:32 -0000	1.137
+++ releases.html	30 Sep 2018 14:20:43 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC Releases</title>
Index: releasing.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/releasing.html,v
retrieving revision 1.51
diff -u -r1.51 releasing.html
--- releasing.html	1 Sep 2018 23:42:00 -0000	1.51
+++ releasing.html	30 Sep 2018 14:20:43 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Rolling a GCC Release</title>
Index: rsync.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/rsync.html,v
retrieving revision 1.23
diff -u -r1.23 rsync.html
--- rsync.html	1 Sep 2018 23:42:00 -0000	1.23
+++ rsync.html	30 Sep 2018 14:20:43 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <meta name="description" content="Anonymous rsync read-only access to the GCC project." />
Index: search.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/search.html,v
retrieving revision 1.199
diff -u -r1.199 search.html
--- search.html	16 Sep 2018 08:59:01 -0000	1.199
+++ search.html	30 Sep 2018 14:20:44 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC detailed search</title>
Index: simtest-howto.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/simtest-howto.html,v
retrieving revision 1.35
diff -u -r1.35 simtest-howto.html
--- simtest-howto.html	2 Sep 2018 11:40:00 -0000	1.35
+++ simtest-howto.html	30 Sep 2018 14:20:44 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
   <head>
     <title>How to test GCC on a simulator</title>
 <link rel="stylesheet" type="text/css" href="https://gcc.gnu.org/gcc.css" />
Index: snapshots.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/snapshots.html,v
retrieving revision 1.23
diff -u -r1.23 snapshots.html
--- snapshots.html	1 Sep 2018 23:42:01 -0000	1.23
+++ snapshots.html	30 Sep 2018 14:20:44 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC Snapshots</title>
Index: spam.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/spam.html,v
retrieving revision 1.10
diff -u -r1.10 spam.html
--- spam.html	1 Sep 2018 23:42:01 -0000	1.10
+++ spam.html	30 Sep 2018 14:20:44 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title> Dealing with SPAM </title>
Index: steering.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/steering.html,v
retrieving revision 1.44
diff -u -r1.44 steering.html
--- steering.html	1 Sep 2018 23:42:01 -0000	1.44
+++ steering.html	30 Sep 2018 14:20:44 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC steering committee</title>
Index: style.mhtml
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/style.mhtml,v
retrieving revision 1.158
diff -u -r1.158 style.mhtml
--- style.mhtml	30 Sep 2018 07:29:40 -0000	1.158
+++ style.mhtml	30 Sep 2018 14:20:44 -0000
@@ -10,18 +10,6 @@ 
   <unset-var XHTML>
 >
 
-;;; Redefine the <html> tag.
-
-<define-container html>
-  <verbatim>
-   <html lang="en">
-  </verbatim>
-  %body
-  <verbatim>
-   </html>
-  </verbatim>
-</define-container>
-
 ;;; Redefine the <head> tag so that we can add default <meta /> headers.
 
 <define-container head>
Index: svn.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/svn.html,v
retrieving revision 1.224
diff -u -r1.224 svn.html
--- svn.html	1 Sep 2018 23:42:01 -0000	1.224
+++ svn.html	30 Sep 2018 14:20:45 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <meta name="description" content="Anonymous read-only access to the GCC project SVN source repository." />
Index: svnwrite.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/svnwrite.html,v
retrieving revision 1.41
diff -u -r1.41 svnwrite.html
--- svnwrite.html	1 Sep 2018 23:42:01 -0000	1.41
+++ svnwrite.html	30 Sep 2018 14:20:45 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 <head>
 <title>Read-write SVN access</title>
 <link rel="stylesheet" type="text/css" href="https://gcc.gnu.org/gcc.css" />
Index: translation.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/translation.html,v
retrieving revision 1.14
diff -u -r1.14 translation.html
--- translation.html	1 Sep 2018 23:42:01 -0000	1.14
+++ translation.html	30 Sep 2018 14:20:45 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC and the Translation Project</title>
Index: benchmarks/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/benchmarks/index.html,v
retrieving revision 1.42
diff -u -r1.42 index.html
--- benchmarks/index.html	1 Sep 2018 23:42:01 -0000	1.42
+++ benchmarks/index.html	30 Sep 2018 14:20:45 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 <head>
 <title>Benchmarking GCC</title>
 <link rel="stylesheet" type="text/css" href="https://gcc.gnu.org/gcc.css" />
Index: bugs/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/bugs/index.html,v
retrieving revision 1.127
diff -u -r1.127 index.html
--- bugs/index.html	2 Sep 2018 13:31:48 -0000	1.127
+++ bugs/index.html	30 Sep 2018 14:20:45 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC Bugs</title>
Index: bugs/management.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/bugs/management.html,v
retrieving revision 1.40
diff -u -r1.40 management.html
--- bugs/management.html	10 Sep 2018 08:19:22 -0000	1.40
+++ bugs/management.html	30 Sep 2018 14:20:46 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Managing Bugs (Bugzilla and the Testsuite)</title>
Index: bugs/minimize.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/bugs/minimize.html,v
retrieving revision 1.11
diff -u -r1.11 minimize.html
--- bugs/minimize.html	1 Sep 2018 23:42:01 -0000	1.11
+++ bugs/minimize.html	30 Sep 2018 14:20:46 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>How to Minimize Test Cases for Bugs</title>
Index: bugs/reghunt.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/bugs/reghunt.html,v
retrieving revision 1.23
diff -u -r1.23 reghunt.html
--- bugs/reghunt.html	1 Sep 2018 23:42:01 -0000	1.23
+++ bugs/reghunt.html	30 Sep 2018 14:20:46 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>How to Locate GCC Regressions</title>
Index: bugs/segfault.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/bugs/segfault.html,v
retrieving revision 1.3
diff -u -r1.3 segfault.html
--- bugs/segfault.html	1 Sep 2018 23:42:01 -0000	1.3
+++ bugs/segfault.html	30 Sep 2018 14:20:46 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>How to debug a GCC segmentation fault</title>
Index: bzkanban/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/bzkanban/index.html,v
retrieving revision 1.6
diff -u -r1.6 index.html
--- bzkanban/index.html	2 Sep 2018 20:16:34 -0000	1.6
+++ bzkanban/index.html	30 Sep 2018 14:20:46 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
     <head>
         <title>Bz Kanban Board</title>
Index: egcs-1.0/buildstat.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/egcs-1.0/buildstat.html,v
retrieving revision 1.13
diff -u -r1.13 buildstat.html
--- egcs-1.0/buildstat.html	1 Sep 2018 23:42:01 -0000	1.13
+++ egcs-1.0/buildstat.html	30 Sep 2018 14:20:46 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 <head>
 <title> Build and Test status for EGCS 1.0</title>
 <link rel="stylesheet" type="text/css" href="https://gcc.gnu.org/gcc.css" />
Index: egcs-1.0/c++features.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/egcs-1.0/c++features.html,v
retrieving revision 1.7
diff -u -r1.7 c++features.html
--- egcs-1.0/c++features.html	1 Sep 2018 23:42:01 -0000	1.7
+++ egcs-1.0/c++features.html	30 Sep 2018 14:20:47 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 <head>
 <title>EGCS 1.0 C++ Features</title>
 <link rel="stylesheet" type="text/css" href="https://gcc.gnu.org/gcc.css" />
Index: egcs-1.0/caveats.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/egcs-1.0/caveats.html,v
retrieving revision 1.14
diff -u -r1.14 caveats.html
--- egcs-1.0/caveats.html	1 Sep 2018 23:42:01 -0000	1.14
+++ egcs-1.0/caveats.html	30 Sep 2018 14:20:47 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 <head>
 <title>EGCS 1.0 Caveats</title>
 <link rel="stylesheet" type="text/css" href="https://gcc.gnu.org/gcc.css" />
Index: egcs-1.0/features-2.8.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/egcs-1.0/features-2.8.html,v
retrieving revision 1.9
diff -u -r1.9 features-2.8.html
--- egcs-1.0/features-2.8.html	1 Sep 2018 23:42:02 -0000	1.9
+++ egcs-1.0/features-2.8.html	30 Sep 2018 14:20:47 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 <head>
 <title>GCC 2.8 features in egcs</title>
 <link rel="stylesheet" type="text/css" href="https://gcc.gnu.org/gcc.css" />
Index: egcs-1.0/features.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/egcs-1.0/features.html,v
retrieving revision 1.10
diff -u -r1.10 features.html
--- egcs-1.0/features.html	1 Sep 2018 23:42:02 -0000	1.10
+++ egcs-1.0/features.html	30 Sep 2018 14:20:47 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 <head>
 <title>EGCS 1.0 Features</title>
 <link rel="stylesheet" type="text/css" href="https://gcc.gnu.org/gcc.css" />
Index: egcs-1.0/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/egcs-1.0/index.html,v
retrieving revision 1.6
diff -u -r1.6 index.html
--- egcs-1.0/index.html	1 Sep 2018 23:42:02 -0000	1.6
+++ egcs-1.0/index.html	30 Sep 2018 14:20:47 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 <head>
 <title>EGCS 1.0</title>
 <link rel="stylesheet" type="text/css" href="https://gcc.gnu.org/gcc.css" />
Index: egcs-1.1/buildstat.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/egcs-1.1/buildstat.html,v
retrieving revision 1.39
diff -u -r1.39 buildstat.html
--- egcs-1.1/buildstat.html	1 Sep 2018 23:42:02 -0000	1.39
+++ egcs-1.1/buildstat.html	30 Sep 2018 14:20:47 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 <head>
 <title> Build and Test status for EGCS 1.1</title>
 <link rel="stylesheet" type="text/css" href="https://gcc.gnu.org/gcc.css" />
Index: egcs-1.1/c++features.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/egcs-1.1/c++features.html,v
retrieving revision 1.8
diff -u -r1.8 c++features.html
--- egcs-1.1/c++features.html	1 Sep 2018 23:42:02 -0000	1.8
+++ egcs-1.1/c++features.html	30 Sep 2018 14:20:47 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 <head>
 <title>EGCS 1.1 C++ Features</title>
 <link rel="stylesheet" type="text/css" href="https://gcc.gnu.org/gcc.css" />
Index: egcs-1.1/caveats.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/egcs-1.1/caveats.html,v
retrieving revision 1.17
diff -u -r1.17 caveats.html
--- egcs-1.1/caveats.html	1 Sep 2018 23:42:02 -0000	1.17
+++ egcs-1.1/caveats.html	30 Sep 2018 14:20:47 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 <head>
 <title>EGCS 1.1 Caveats</title>
 <link rel="stylesheet" type="text/css" href="https://gcc.gnu.org/gcc.css" />
Index: egcs-1.1/egcs-1.1-branch.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/egcs-1.1/egcs-1.1-branch.html,v
retrieving revision 1.10
diff -u -r1.10 egcs-1.1-branch.html
--- egcs-1.1/egcs-1.1-branch.html	2 Sep 2018 12:30:57 -0000	1.10
+++ egcs-1.1/egcs-1.1-branch.html	30 Sep 2018 14:20:47 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 <head>
 <title>EGCS 1.1 branch </title>
 <link rel="stylesheet" type="text/css" href="https://gcc.gnu.org/gcc.css" />
Index: egcs-1.1/egcs-1.1-test.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/egcs-1.1/egcs-1.1-test.html,v
retrieving revision 1.11
diff -u -r1.11 egcs-1.1-test.html
--- egcs-1.1/egcs-1.1-test.html	1 Sep 2018 23:42:02 -0000	1.11
+++ egcs-1.1/egcs-1.1-test.html	30 Sep 2018 14:20:47 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 <head>
 <title>EGCS 1.1 test strategy</title>
 <link rel="stylesheet" type="text/css" href="https://gcc.gnu.org/gcc.css" />
Index: egcs-1.1/features.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/egcs-1.1/features.html,v
retrieving revision 1.23
diff -u -r1.23 features.html
--- egcs-1.1/features.html	1 Sep 2018 23:42:02 -0000	1.23
+++ egcs-1.1/features.html	30 Sep 2018 14:20:47 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 <head>
 <title>EGCS 1.1 New Features</title>
 <link rel="stylesheet" type="text/css" href="https://gcc.gnu.org/gcc.css" />
Index: egcs-1.1/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/egcs-1.1/index.html,v
retrieving revision 1.10
diff -u -r1.10 index.html
--- egcs-1.1/index.html	1 Sep 2018 23:42:02 -0000	1.10
+++ egcs-1.1/index.html	30 Sep 2018 14:20:47 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 <head>
 <title>EGCS 1.1</title>
 <link rel="stylesheet" type="text/css" href="https://gcc.gnu.org/gcc.css" />
Index: egcs-1.1/regress.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/egcs-1.1/regress.html,v
retrieving revision 1.12
diff -u -r1.12 regress.html
--- egcs-1.1/regress.html	9 Sep 2018 21:55:45 -0000	1.12
+++ egcs-1.1/regress.html	30 Sep 2018 14:20:47 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 <head>
 <title>EGCS 1.1 regression test strategy</title>
 <link rel="stylesheet" type="text/css" href="https://gcc.gnu.org/gcc.css" />
Index: egcs-1.1/schedule.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/egcs-1.1/schedule.html,v
retrieving revision 1.14
diff -u -r1.14 schedule.html
--- egcs-1.1/schedule.html	1 Sep 2018 23:42:02 -0000	1.14
+++ egcs-1.1/schedule.html	30 Sep 2018 14:20:47 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 <head>
 <title>EGCS 1.1</title>
 <link rel="stylesheet" type="text/css" href="https://gcc.gnu.org/gcc.css" />
Index: fortran/contributors.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/fortran/contributors.html,v
retrieving revision 1.7
diff -u -r1.7 contributors.html
--- fortran/contributors.html	1 Sep 2018 23:42:02 -0000	1.7
+++ fortran/contributors.html	30 Sep 2018 14:20:47 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 <head>
 <title>Contributors to GNU Fortran</title>
 <link rel="stylesheet" type="text/css" href="https://gcc.gnu.org/gcc.css" />
Index: fortran/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/fortran/index.html,v
retrieving revision 1.37
diff -u -r1.37 index.html
--- fortran/index.html	1 Sep 2018 23:42:02 -0000	1.37
+++ fortran/index.html	30 Sep 2018 14:20:47 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GNU Fortran</title>
Index: gcc-2.95/branch.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-2.95/branch.html,v
retrieving revision 1.12
diff -u -r1.12 branch.html
--- gcc-2.95/branch.html	2 Sep 2018 12:25:58 -0000	1.12
+++ gcc-2.95/branch.html	30 Sep 2018 14:20:47 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 2.95 branch </title>
Index: gcc-2.95/buildstat.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-2.95/buildstat.html,v
retrieving revision 1.81
diff -u -r1.81 buildstat.html
--- gcc-2.95/buildstat.html	1 Sep 2018 23:42:02 -0000	1.81
+++ gcc-2.95/buildstat.html	30 Sep 2018 14:20:47 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title> Build status for GCC 2.95</title>
Index: gcc-2.95/c++features.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-2.95/c++features.html,v
retrieving revision 1.10
diff -u -r1.10 c++features.html
--- gcc-2.95/c++features.html	1 Sep 2018 23:42:02 -0000	1.10
+++ gcc-2.95/c++features.html	30 Sep 2018 14:20:47 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 2.95 C++ Features</title>
Index: gcc-2.95/caveats.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-2.95/caveats.html,v
retrieving revision 1.21
diff -u -r1.21 caveats.html
--- gcc-2.95/caveats.html	1 Sep 2018 23:42:02 -0000	1.21
+++ gcc-2.95/caveats.html	30 Sep 2018 14:20:47 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 2.95 Caveats</title>
Index: gcc-2.95/features.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-2.95/features.html,v
retrieving revision 1.43
diff -u -r1.43 features.html
--- gcc-2.95/features.html	1 Sep 2018 23:42:02 -0000	1.43
+++ gcc-2.95/features.html	30 Sep 2018 14:20:48 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 2.95 New Features</title>
Index: gcc-2.95/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-2.95/index.html,v
retrieving revision 1.8
diff -u -r1.8 index.html
--- gcc-2.95/index.html	1 Sep 2018 23:42:02 -0000	1.8
+++ gcc-2.95/index.html	30 Sep 2018 14:20:48 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 2.95</title>
Index: gcc-2.95/othertest.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-2.95/othertest.html,v
retrieving revision 1.10
diff -u -r1.10 othertest.html
--- gcc-2.95/othertest.html	1 Sep 2018 23:42:02 -0000	1.10
+++ gcc-2.95/othertest.html	30 Sep 2018 14:20:48 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 2.95 other tests</title>
Index: gcc-2.95/regress.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-2.95/regress.html,v
retrieving revision 1.113
diff -u -r1.113 regress.html
--- gcc-2.95/regress.html	2 Sep 2018 12:13:26 -0000	1.113
+++ gcc-2.95/regress.html	30 Sep 2018 14:20:48 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 2.95 regression test strategy</title>
Index: gcc-2.95/schedule.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-2.95/schedule.html,v
retrieving revision 1.15
diff -u -r1.15 schedule.html
--- gcc-2.95/schedule.html	1 Sep 2018 23:42:02 -0000	1.15
+++ gcc-2.95/schedule.html	30 Sep 2018 14:20:48 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 2.95</title>
Index: gcc-2.95/testing.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-2.95/testing.html,v
retrieving revision 1.7
diff -u -r1.7 testing.html
--- gcc-2.95/testing.html	1 Sep 2018 23:42:02 -0000	1.7
+++ gcc-2.95/testing.html	30 Sep 2018 14:20:48 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Testing GCC 2.95 with the current testsuite</title>
Index: gcc-3.0/buildstat.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.0/buildstat.html,v
retrieving revision 1.158
diff -u -r1.158 buildstat.html
--- gcc-3.0/buildstat.html	1 Sep 2018 23:42:02 -0000	1.158
+++ gcc-3.0/buildstat.html	30 Sep 2018 14:20:48 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Build status for GCC 3.0</title>
Index: gcc-3.0/c++features.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.0/c++features.html,v
retrieving revision 1.6
diff -u -r1.6 c++features.html
--- gcc-3.0/c++features.html	1 Sep 2018 23:42:02 -0000	1.6
+++ gcc-3.0/c++features.html	30 Sep 2018 14:20:48 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>C++ New Features</title>
Index: gcc-3.0/caveats.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.0/caveats.html,v
retrieving revision 1.11
diff -u -r1.11 caveats.html
--- gcc-3.0/caveats.html	1 Sep 2018 23:42:02 -0000	1.11
+++ gcc-3.0/caveats.html	30 Sep 2018 14:20:48 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 3.0 Caveats</title>
Index: gcc-3.0/criteria.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.0/criteria.html,v
retrieving revision 1.36
diff -u -r1.36 criteria.html
--- gcc-3.0/criteria.html	9 Sep 2018 10:30:27 -0000	1.36
+++ gcc-3.0/criteria.html	30 Sep 2018 14:20:49 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 3.0 Release Criteria</title>
Index: gcc-3.0/features.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.0/features.html,v
retrieving revision 1.39
diff -u -r1.39 features.html
--- gcc-3.0/features.html	1 Sep 2018 23:42:02 -0000	1.39
+++ gcc-3.0/features.html	30 Sep 2018 14:20:49 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 3.0 New Features</title>
Index: gcc-3.0/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.0/index.html,v
retrieving revision 1.20
diff -u -r1.20 index.html
--- gcc-3.0/index.html	1 Sep 2018 23:42:02 -0000	1.20
+++ gcc-3.0/index.html	30 Sep 2018 14:20:49 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 3.0.4</title>
Index: gcc-3.0/lapack-guide.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.0/lapack-guide.html,v
retrieving revision 1.7
diff -u -r1.7 lapack-guide.html
--- gcc-3.0/lapack-guide.html	1 Sep 2018 23:42:02 -0000	1.7
+++ gcc-3.0/lapack-guide.html	30 Sep 2018 14:20:49 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>LAPACK build and test guide</title>
Index: gcc-3.0/libgcc.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.0/libgcc.html,v
retrieving revision 1.8
diff -u -r1.8 libgcc.html
--- gcc-3.0/libgcc.html	1 Sep 2018 23:42:02 -0000	1.8
+++ gcc-3.0/libgcc.html	30 Sep 2018 14:20:49 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>libgcc</title>
Index: gcc-3.0/pooma-guide.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.0/pooma-guide.html,v
retrieving revision 1.6
diff -u -r1.6 pooma-guide.html
--- gcc-3.0/pooma-guide.html	1 Sep 2018 23:42:02 -0000	1.6
+++ gcc-3.0/pooma-guide.html	30 Sep 2018 14:20:49 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>POOMA build and test guide</title>
Index: gcc-3.1/buildstat.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.1/buildstat.html,v
retrieving revision 1.47
diff -u -r1.47 buildstat.html
--- gcc-3.1/buildstat.html	1 Sep 2018 23:42:02 -0000	1.47
+++ gcc-3.1/buildstat.html	30 Sep 2018 14:20:49 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Build status for GCC 3.1</title>
Index: gcc-3.1/changes.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.1/changes.html,v
retrieving revision 1.77
diff -u -r1.77 changes.html
--- gcc-3.1/changes.html	1 Sep 2018 23:42:02 -0000	1.77
+++ gcc-3.1/changes.html	30 Sep 2018 14:20:49 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 3.1 Release Series &mdash; Changes, New Features, and Fixes</title>
Index: gcc-3.1/criteria.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.1/criteria.html,v
retrieving revision 1.41
diff -u -r1.41 criteria.html
--- gcc-3.1/criteria.html	23 Sep 2018 14:35:02 -0000	1.41
+++ gcc-3.1/criteria.html	30 Sep 2018 14:20:49 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 3.1 Release Criteria</title>
Index: gcc-3.1/gcj-status.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.1/gcj-status.html,v
retrieving revision 1.7
diff -u -r1.7 gcj-status.html
--- gcc-3.1/gcj-status.html	15 Sep 2018 22:57:03 -0000	1.7
+++ gcc-3.1/gcj-status.html	30 Sep 2018 14:20:49 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCJ 3.1 status</title>
Index: gcc-3.1/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.1/index.html,v
retrieving revision 1.9
diff -u -r1.9 index.html
--- gcc-3.1/index.html	1 Sep 2018 23:42:03 -0000	1.9
+++ gcc-3.1/index.html	30 Sep 2018 14:20:49 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 3.1</title>
Index: gcc-3.2/buildstat.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.2/buildstat.html,v
retrieving revision 1.82
diff -u -r1.82 buildstat.html
--- gcc-3.2/buildstat.html	1 Sep 2018 23:42:03 -0000	1.82
+++ gcc-3.2/buildstat.html	30 Sep 2018 14:20:50 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Build status for GCC 3.2</title>
Index: gcc-3.2/c++-abi.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.2/c++-abi.html,v
retrieving revision 1.13
diff -u -r1.13 c++-abi.html
--- gcc-3.2/c++-abi.html	1 Sep 2018 23:42:03 -0000	1.13
+++ gcc-3.2/c++-abi.html	30 Sep 2018 14:20:50 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
   <head>
     <title>A Common C++ ABI for GNU/Linux</title>
 <link rel="stylesheet" type="text/css" href="https://gcc.gnu.org/gcc.css" />
Index: gcc-3.2/changes.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.2/changes.html,v
retrieving revision 1.60
diff -u -r1.60 changes.html
--- gcc-3.2/changes.html	1 Sep 2018 23:42:03 -0000	1.60
+++ gcc-3.2/changes.html	30 Sep 2018 14:20:51 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 3.2 Release Series &mdash; Changes, New Features, and Fixes</title>
Index: gcc-3.2/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.2/index.html,v
retrieving revision 1.17
diff -u -r1.17 index.html
--- gcc-3.2/index.html	1 Sep 2018 23:42:03 -0000	1.17
+++ gcc-3.2/index.html	30 Sep 2018 14:20:51 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 3.2 Release Series</title>
Index: gcc-3.3/buildstat.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.3/buildstat.html,v
retrieving revision 1.59
diff -u -r1.59 buildstat.html
--- gcc-3.3/buildstat.html	1 Sep 2018 23:42:03 -0000	1.59
+++ gcc-3.3/buildstat.html	30 Sep 2018 14:20:51 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Build status for GCC 3.3</title>
Index: gcc-3.3/changes.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.3/changes.html,v
retrieving revision 1.65
diff -u -r1.65 changes.html
--- gcc-3.3/changes.html	1 Sep 2018 23:42:03 -0000	1.65
+++ gcc-3.3/changes.html	30 Sep 2018 14:20:52 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 3.3 Release Series &mdash; Changes, New Features, and Fixes</title>
Index: gcc-3.3/criteria.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.3/criteria.html,v
retrieving revision 1.18
diff -u -r1.18 criteria.html
--- gcc-3.3/criteria.html	9 Sep 2018 18:57:43 -0000	1.18
+++ gcc-3.3/criteria.html	30 Sep 2018 14:20:52 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 3.3 Release Criteria</title>
Index: gcc-3.3/gcj-status.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.3/gcj-status.html,v
retrieving revision 1.12
diff -u -r1.12 gcj-status.html
--- gcc-3.3/gcj-status.html	11 Sep 2018 19:35:08 -0000	1.12
+++ gcc-3.3/gcj-status.html	30 Sep 2018 14:20:52 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCJ 3.3 status</title>
Index: gcc-3.3/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.3/index.html,v
retrieving revision 1.25
diff -u -r1.25 index.html
--- gcc-3.3/index.html	1 Sep 2018 23:42:03 -0000	1.25
+++ gcc-3.3/index.html	30 Sep 2018 14:20:52 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 3.3 Release Series</title>
Index: gcc-3.4/buildstat.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.4/buildstat.html,v
retrieving revision 1.38
diff -u -r1.38 buildstat.html
--- gcc-3.4/buildstat.html	1 Sep 2018 23:42:03 -0000	1.38
+++ gcc-3.4/buildstat.html	30 Sep 2018 14:20:56 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Build status for GCC 3.4</title>
Index: gcc-3.4/changes.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.4/changes.html,v
retrieving revision 1.169
diff -u -r1.169 changes.html
--- gcc-3.4/changes.html	1 Sep 2018 23:42:03 -0000	1.169
+++ gcc-3.4/changes.html	30 Sep 2018 14:20:57 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 3.4 Release Series &mdash; Changes, New Features, and Fixes</title>
Index: gcc-3.4/criteria.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.4/criteria.html,v
retrieving revision 1.10
diff -u -r1.10 criteria.html
--- gcc-3.4/criteria.html	10 Sep 2018 19:02:36 -0000	1.10
+++ gcc-3.4/criteria.html	30 Sep 2018 14:20:57 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 3.4 Release Criteria</title>
Index: gcc-3.4/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.4/index.html,v
retrieving revision 1.17
diff -u -r1.17 index.html
--- gcc-3.4/index.html	1 Sep 2018 23:42:03 -0000	1.17
+++ gcc-3.4/index.html	30 Sep 2018 14:20:57 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 3.4 Release Series</title>
Index: gcc-3.4/mips-abi.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.4/mips-abi.html,v
retrieving revision 1.7
diff -u -r1.7 mips-abi.html
--- gcc-3.4/mips-abi.html	8 Sep 2018 08:30:26 -0000	1.7
+++ gcc-3.4/mips-abi.html	30 Sep 2018 14:20:57 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>MIPS ABI Changes in GCC 3.4</title>
Index: gcc-3.4/powerpc-abi.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.4/powerpc-abi.html,v
retrieving revision 1.3
diff -u -r1.3 powerpc-abi.html
--- gcc-3.4/powerpc-abi.html	1 Sep 2018 23:42:03 -0000	1.3
+++ gcc-3.4/powerpc-abi.html	30 Sep 2018 14:20:57 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>PowerPC ABI Changes in GCC 3.4</title>
Index: gcc-3.4/sparc-abi.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.4/sparc-abi.html,v
retrieving revision 1.7
diff -u -r1.7 sparc-abi.html
--- gcc-3.4/sparc-abi.html	2 Sep 2018 20:06:16 -0000	1.7
+++ gcc-3.4/sparc-abi.html	30 Sep 2018 14:20:57 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>SPARC ABI Changes in GCC 3.4</title>
Index: gcc-4.0/buildstat.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.0/buildstat.html,v
retrieving revision 1.34
diff -u -r1.34 buildstat.html
--- gcc-4.0/buildstat.html	1 Sep 2018 23:42:03 -0000	1.34
+++ gcc-4.0/buildstat.html	30 Sep 2018 14:20:57 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Build status for GCC 4.0</title>
Index: gcc-4.0/changes.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.0/changes.html,v
retrieving revision 1.75
diff -u -r1.75 changes.html
--- gcc-4.0/changes.html	1 Sep 2018 23:42:03 -0000	1.75
+++ gcc-4.0/changes.html	30 Sep 2018 14:20:57 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 4.0 Release Series &mdash; Changes, New Features, and Fixes</title>
Index: gcc-4.0/criteria.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.0/criteria.html,v
retrieving revision 1.7
diff -u -r1.7 criteria.html
--- gcc-4.0/criteria.html	1 Sep 2018 23:42:03 -0000	1.7
+++ gcc-4.0/criteria.html	30 Sep 2018 14:20:57 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 4.0 Release Criteria</title>
Index: gcc-4.0/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.0/index.html,v
retrieving revision 1.16
diff -u -r1.16 index.html
--- gcc-4.0/index.html	1 Sep 2018 23:42:03 -0000	1.16
+++ gcc-4.0/index.html	30 Sep 2018 14:20:57 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 4.0 Release Series</title>
Index: gcc-4.1/buildstat.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.1/buildstat.html,v
retrieving revision 1.21
diff -u -r1.21 buildstat.html
--- gcc-4.1/buildstat.html	1 Sep 2018 23:42:04 -0000	1.21
+++ gcc-4.1/buildstat.html	30 Sep 2018 14:20:57 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Build status for GCC 4.1</title>
Index: gcc-4.1/changes.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.1/changes.html,v
retrieving revision 1.33
diff -u -r1.33 changes.html
--- gcc-4.1/changes.html	1 Sep 2018 23:42:04 -0000	1.33
+++ gcc-4.1/changes.html	30 Sep 2018 14:20:57 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 4.1 Release Series &mdash; Changes, New Features, and Fixes</title>
Index: gcc-4.1/criteria.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.1/criteria.html,v
retrieving revision 1.3
diff -u -r1.3 criteria.html
--- gcc-4.1/criteria.html	1 Sep 2018 23:42:04 -0000	1.3
+++ gcc-4.1/criteria.html	30 Sep 2018 14:20:57 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 4.1 Release Criteria</title>
Index: gcc-4.1/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.1/index.html,v
retrieving revision 1.13
diff -u -r1.13 index.html
--- gcc-4.1/index.html	1 Sep 2018 23:42:04 -0000	1.13
+++ gcc-4.1/index.html	30 Sep 2018 14:20:57 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 4.1 Release Series</title>
Index: gcc-4.2/buildstat.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.2/buildstat.html,v
retrieving revision 1.20
diff -u -r1.20 buildstat.html
--- gcc-4.2/buildstat.html	1 Sep 2018 23:42:04 -0000	1.20
+++ gcc-4.2/buildstat.html	30 Sep 2018 14:20:57 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Build status for GCC 4.2</title>
Index: gcc-4.2/changes.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.2/changes.html,v
retrieving revision 1.46
diff -u -r1.46 changes.html
--- gcc-4.2/changes.html	1 Sep 2018 23:42:04 -0000	1.46
+++ gcc-4.2/changes.html	30 Sep 2018 14:20:57 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 4.2 Release Series &mdash; Changes, New Features, and Fixes</title>
Index: gcc-4.2/criteria.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.2/criteria.html,v
retrieving revision 1.3
diff -u -r1.3 criteria.html
--- gcc-4.2/criteria.html	1 Sep 2018 23:42:04 -0000	1.3
+++ gcc-4.2/criteria.html	30 Sep 2018 14:20:57 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 4.2 Release Criteria</title>
Index: gcc-4.2/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.2/index.html,v
retrieving revision 1.13
diff -u -r1.13 index.html
--- gcc-4.2/index.html	1 Sep 2018 23:42:04 -0000	1.13
+++ gcc-4.2/index.html	30 Sep 2018 14:20:57 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 4.2 Release Series</title>
Index: gcc-4.3/buildstat.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.3/buildstat.html,v
retrieving revision 1.41
diff -u -r1.41 buildstat.html
--- gcc-4.3/buildstat.html	1 Sep 2018 23:42:04 -0000	1.41
+++ gcc-4.3/buildstat.html	30 Sep 2018 14:20:58 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Build status for GCC 4.3</title>
Index: gcc-4.3/changes.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.3/changes.html,v
retrieving revision 1.137
diff -u -r1.137 changes.html
--- gcc-4.3/changes.html	1 Sep 2018 23:42:04 -0000	1.137
+++ gcc-4.3/changes.html	30 Sep 2018 14:20:58 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 
 <head>
Index: gcc-4.3/criteria.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.3/criteria.html,v
retrieving revision 1.4
diff -u -r1.4 criteria.html
--- gcc-4.3/criteria.html	1 Sep 2018 23:42:04 -0000	1.4
+++ gcc-4.3/criteria.html	30 Sep 2018 14:20:58 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 4.3 Release Criteria</title>
Index: gcc-4.3/cxx0x_status.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.3/cxx0x_status.html,v
retrieving revision 1.15
diff -u -r1.15 cxx0x_status.html
--- gcc-4.3/cxx0x_status.html	1 Sep 2018 23:42:04 -0000	1.15
+++ gcc-4.3/cxx0x_status.html	30 Sep 2018 14:20:58 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
   <title>Status of Experimental C++0x Support in GCC 4.3</title>
Index: gcc-4.3/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.3/index.html,v
retrieving revision 1.14
diff -u -r1.14 index.html
--- gcc-4.3/index.html	1 Sep 2018 23:42:04 -0000	1.14
+++ gcc-4.3/index.html	30 Sep 2018 14:20:58 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 4.3 Release Series</title>
Index: gcc-4.3/porting_to.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.3/porting_to.html,v
retrieving revision 1.19
diff -u -r1.19 porting_to.html
--- gcc-4.3/porting_to.html	9 Sep 2018 19:56:13 -0000	1.19
+++ gcc-4.3/porting_to.html	30 Sep 2018 14:20:58 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 4.3 Release Series &mdash; Porting to the New Tools</title>
Index: gcc-4.4/buildstat.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.4/buildstat.html,v
retrieving revision 1.34
diff -u -r1.34 buildstat.html
--- gcc-4.4/buildstat.html	1 Sep 2018 23:42:04 -0000	1.34
+++ gcc-4.4/buildstat.html	30 Sep 2018 14:20:58 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Build status for GCC 4.4</title>
Index: gcc-4.4/changes.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.4/changes.html,v
retrieving revision 1.93
diff -u -r1.93 changes.html
--- gcc-4.4/changes.html	1 Sep 2018 23:42:04 -0000	1.93
+++ gcc-4.4/changes.html	30 Sep 2018 14:20:59 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 4.4 Release Series &mdash; Changes, New Features, and Fixes</title>
Index: gcc-4.4/criteria.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.4/criteria.html,v
retrieving revision 1.3
diff -u -r1.3 criteria.html
--- gcc-4.4/criteria.html	1 Sep 2018 23:42:04 -0000	1.3
+++ gcc-4.4/criteria.html	30 Sep 2018 14:20:59 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 4.4 Release Criteria</title>
Index: gcc-4.4/cxx0x_status.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.4/cxx0x_status.html,v
retrieving revision 1.15
diff -u -r1.15 cxx0x_status.html
--- gcc-4.4/cxx0x_status.html	1 Sep 2018 23:42:04 -0000	1.15
+++ gcc-4.4/cxx0x_status.html	30 Sep 2018 14:20:59 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
   <title>Status of Experimental C++0x Support in GCC 4.4</title>
Index: gcc-4.4/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.4/index.html,v
retrieving revision 1.16
diff -u -r1.16 index.html
--- gcc-4.4/index.html	1 Sep 2018 23:42:04 -0000	1.16
+++ gcc-4.4/index.html	30 Sep 2018 14:20:59 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 4.4 Release Series</title>
Index: gcc-4.4/porting_to.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.4/porting_to.html,v
retrieving revision 1.13
diff -u -r1.13 porting_to.html
--- gcc-4.4/porting_to.html	9 Sep 2018 20:16:58 -0000	1.13
+++ gcc-4.4/porting_to.html	30 Sep 2018 14:20:59 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 4.4 Release Series &mdash; Porting to the New Tools</title>
Index: gcc-4.5/buildstat.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.5/buildstat.html,v
retrieving revision 1.22
diff -u -r1.22 buildstat.html
--- gcc-4.5/buildstat.html	1 Sep 2018 23:42:04 -0000	1.22
+++ gcc-4.5/buildstat.html	30 Sep 2018 14:20:59 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Build status for GCC 4.5</title>
Index: gcc-4.5/changes.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.5/changes.html,v
retrieving revision 1.121
diff -u -r1.121 changes.html
--- gcc-4.5/changes.html	1 Sep 2018 23:42:04 -0000	1.121
+++ gcc-4.5/changes.html	30 Sep 2018 14:21:00 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 4.5 Release Series &mdash; Changes, New Features, and Fixes</title>
Index: gcc-4.5/criteria.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.5/criteria.html,v
retrieving revision 1.5
diff -u -r1.5 criteria.html
--- gcc-4.5/criteria.html	1 Sep 2018 23:42:04 -0000	1.5
+++ gcc-4.5/criteria.html	30 Sep 2018 14:21:00 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 4.5 Release Criteria</title>
Index: gcc-4.5/cxx0x_status.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.5/cxx0x_status.html,v
retrieving revision 1.14
diff -u -r1.14 cxx0x_status.html
--- gcc-4.5/cxx0x_status.html	1 Sep 2018 23:42:04 -0000	1.14
+++ gcc-4.5/cxx0x_status.html	30 Sep 2018 14:21:00 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
   <title>Status of Experimental C++0x Support in GCC 4.5</title>
Index: gcc-4.5/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.5/index.html,v
retrieving revision 1.12
diff -u -r1.12 index.html
--- gcc-4.5/index.html	1 Sep 2018 23:42:04 -0000	1.12
+++ gcc-4.5/index.html	30 Sep 2018 14:21:00 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 4.5 Release Series</title>
Index: gcc-4.6/buildstat.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.6/buildstat.html,v
retrieving revision 1.21
diff -u -r1.21 buildstat.html
--- gcc-4.6/buildstat.html	1 Sep 2018 23:42:05 -0000	1.21
+++ gcc-4.6/buildstat.html	30 Sep 2018 14:21:00 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Build status for GCC 4.6</title>
Index: gcc-4.6/changes.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.6/changes.html,v
retrieving revision 1.158
diff -u -r1.158 changes.html
--- gcc-4.6/changes.html	1 Sep 2018 23:42:05 -0000	1.158
+++ gcc-4.6/changes.html	30 Sep 2018 14:21:04 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 4.6 Release Series &mdash; Changes, New Features, and Fixes</title>
Index: gcc-4.6/criteria.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.6/criteria.html,v
retrieving revision 1.6
diff -u -r1.6 criteria.html
--- gcc-4.6/criteria.html	1 Sep 2018 23:42:05 -0000	1.6
+++ gcc-4.6/criteria.html	30 Sep 2018 14:21:04 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 4.6 Release Criteria</title>
Index: gcc-4.6/cxx0x_status.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.6/cxx0x_status.html,v
retrieving revision 1.15
diff -u -r1.15 cxx0x_status.html
--- gcc-4.6/cxx0x_status.html	1 Sep 2018 23:42:05 -0000	1.15
+++ gcc-4.6/cxx0x_status.html	30 Sep 2018 14:21:04 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
   <title>Status of Experimental C++0x Support in GCC 4.6</title>
Index: gcc-4.6/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.6/index.html,v
retrieving revision 1.13
diff -u -r1.13 index.html
--- gcc-4.6/index.html	1 Sep 2018 23:42:05 -0000	1.13
+++ gcc-4.6/index.html	30 Sep 2018 14:21:04 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 4.6 Release Series</title>
Index: gcc-4.6/porting_to.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.6/porting_to.html,v
retrieving revision 1.11
diff -u -r1.11 porting_to.html
--- gcc-4.6/porting_to.html	1 Sep 2018 23:42:05 -0000	1.11
+++ gcc-4.6/porting_to.html	30 Sep 2018 14:21:04 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Porting to GCC 4.6</title>
Index: gcc-4.7/buildstat.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.7/buildstat.html,v
retrieving revision 1.17
diff -u -r1.17 buildstat.html
--- gcc-4.7/buildstat.html	1 Sep 2018 23:42:05 -0000	1.17
+++ gcc-4.7/buildstat.html	30 Sep 2018 14:21:04 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Build status for GCC 4.7</title>
Index: gcc-4.7/changes.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.7/changes.html,v
retrieving revision 1.152
diff -u -r1.152 changes.html
--- gcc-4.7/changes.html	1 Sep 2018 23:42:05 -0000	1.152
+++ gcc-4.7/changes.html	30 Sep 2018 14:21:04 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 4.7 Release Series &mdash; Changes, New Features, and Fixes</title>
Index: gcc-4.7/criteria.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.7/criteria.html,v
retrieving revision 1.4
diff -u -r1.4 criteria.html
--- gcc-4.7/criteria.html	1 Sep 2018 23:42:05 -0000	1.4
+++ gcc-4.7/criteria.html	30 Sep 2018 14:21:04 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 4.7 Release Criteria</title>
Index: gcc-4.7/cxx0x_status.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.7/cxx0x_status.html,v
retrieving revision 1.11
diff -u -r1.11 cxx0x_status.html
--- gcc-4.7/cxx0x_status.html	1 Sep 2018 23:42:05 -0000	1.11
+++ gcc-4.7/cxx0x_status.html	30 Sep 2018 14:21:05 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
   <title>Status of Experimental C++11 Support in GCC 4.7</title>
Index: gcc-4.7/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.7/index.html,v
retrieving revision 1.13
diff -u -r1.13 index.html
--- gcc-4.7/index.html	1 Sep 2018 23:42:05 -0000	1.13
+++ gcc-4.7/index.html	30 Sep 2018 14:21:05 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 4.7 Release Series</title>
Index: gcc-4.7/porting_to.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.7/porting_to.html,v
retrieving revision 1.13
diff -u -r1.13 porting_to.html
--- gcc-4.7/porting_to.html	1 Sep 2018 23:42:05 -0000	1.13
+++ gcc-4.7/porting_to.html	30 Sep 2018 14:21:05 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Porting to GCC 4.7</title>
Index: gcc-4.8/buildstat.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.8/buildstat.html,v
retrieving revision 1.19
diff -u -r1.19 buildstat.html
--- gcc-4.8/buildstat.html	1 Sep 2018 23:42:05 -0000	1.19
+++ gcc-4.8/buildstat.html	30 Sep 2018 14:21:05 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Build status for GCC 4.8</title>
Index: gcc-4.8/changes.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.8/changes.html,v
retrieving revision 1.142
diff -u -r1.142 changes.html
--- gcc-4.8/changes.html	1 Sep 2018 23:42:05 -0000	1.142
+++ gcc-4.8/changes.html	30 Sep 2018 14:21:05 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 4.8 Release Series &mdash; Changes, New Features, and Fixes</title>
Index: gcc-4.8/criteria.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.8/criteria.html,v
retrieving revision 1.4
diff -u -r1.4 criteria.html
--- gcc-4.8/criteria.html	1 Sep 2018 23:42:05 -0000	1.4
+++ gcc-4.8/criteria.html	30 Sep 2018 14:21:05 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 4.8 Release Criteria</title>
Index: gcc-4.8/cxx0x_status.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.8/cxx0x_status.html,v
retrieving revision 1.13
diff -u -r1.13 cxx0x_status.html
--- gcc-4.8/cxx0x_status.html	1 Sep 2018 23:42:05 -0000	1.13
+++ gcc-4.8/cxx0x_status.html	30 Sep 2018 14:21:05 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
   <title>Status of Experimental C++11 Support in GCC 4.8</title>
Index: gcc-4.8/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.8/index.html,v
retrieving revision 1.13
diff -u -r1.13 index.html
--- gcc-4.8/index.html	1 Sep 2018 23:42:05 -0000	1.13
+++ gcc-4.8/index.html	30 Sep 2018 14:21:05 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 4.8 Release Series</title>
Index: gcc-4.8/porting_to.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.8/porting_to.html,v
retrieving revision 1.8
diff -u -r1.8 porting_to.html
--- gcc-4.8/porting_to.html	1 Sep 2018 23:42:05 -0000	1.8
+++ gcc-4.8/porting_to.html	30 Sep 2018 14:21:06 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Porting to GCC 4.8</title>
Index: gcc-4.9/buildstat.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.9/buildstat.html,v
retrieving revision 1.14
diff -u -r1.14 buildstat.html
--- gcc-4.9/buildstat.html	1 Sep 2018 23:42:05 -0000	1.14
+++ gcc-4.9/buildstat.html	30 Sep 2018 14:21:06 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Build status for GCC 4.9</title>
Index: gcc-4.9/changes.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.9/changes.html,v
retrieving revision 1.95
diff -u -r1.95 changes.html
--- gcc-4.9/changes.html	2 Sep 2018 20:48:24 -0000	1.95
+++ gcc-4.9/changes.html	30 Sep 2018 14:21:06 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 4.9 Release Series &mdash; Changes, New Features, and Fixes</title>
Index: gcc-4.9/criteria.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.9/criteria.html,v
retrieving revision 1.5
diff -u -r1.5 criteria.html
--- gcc-4.9/criteria.html	1 Sep 2018 23:42:06 -0000	1.5
+++ gcc-4.9/criteria.html	30 Sep 2018 14:21:06 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 4.9 Release Criteria</title>
Index: gcc-4.9/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.9/index.html,v
retrieving revision 1.11
diff -u -r1.11 index.html
--- gcc-4.9/index.html	1 Sep 2018 23:42:06 -0000	1.11
+++ gcc-4.9/index.html	30 Sep 2018 14:21:06 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 4.9 Release Series</title>
Index: gcc-4.9/porting_to.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.9/porting_to.html,v
retrieving revision 1.11
diff -u -r1.11 porting_to.html
--- gcc-4.9/porting_to.html	1 Sep 2018 23:42:06 -0000	1.11
+++ gcc-4.9/porting_to.html	30 Sep 2018 14:21:06 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Porting to GCC 4.9</title>
Index: gcc-5/buildstat.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-5/buildstat.html,v
retrieving revision 1.14
diff -u -r1.14 buildstat.html
--- gcc-5/buildstat.html	1 Sep 2018 23:42:06 -0000	1.14
+++ gcc-5/buildstat.html	30 Sep 2018 14:21:06 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Build status for GCC 5</title>
Index: gcc-5/changes.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-5/changes.html,v
retrieving revision 1.154
diff -u -r1.154 changes.html
--- gcc-5/changes.html	9 Sep 2018 21:25:26 -0000	1.154
+++ gcc-5/changes.html	30 Sep 2018 14:21:07 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 5 Release Series &mdash; Changes, New Features, and Fixes</title>
Index: gcc-5/criteria.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-5/criteria.html,v
retrieving revision 1.6
diff -u -r1.6 criteria.html
--- gcc-5/criteria.html	1 Sep 2018 23:42:06 -0000	1.6
+++ gcc-5/criteria.html	30 Sep 2018 14:21:07 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 5 Release Criteria</title>
Index: gcc-5/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-5/index.html,v
retrieving revision 1.9
diff -u -r1.9 index.html
--- gcc-5/index.html	1 Sep 2018 23:42:06 -0000	1.9
+++ gcc-5/index.html	30 Sep 2018 14:21:07 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 5 Release Series</title>
Index: gcc-5/porting_to.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-5/porting_to.html,v
retrieving revision 1.15
diff -u -r1.15 porting_to.html
--- gcc-5/porting_to.html	24 Sep 2018 21:54:40 -0000	1.15
+++ gcc-5/porting_to.html	30 Sep 2018 14:21:07 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Porting to GCC 5</title>
Index: gcc-6/buildstat.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-6/buildstat.html,v
retrieving revision 1.9
diff -u -r1.9 buildstat.html
--- gcc-6/buildstat.html	1 Sep 2018 23:42:06 -0000	1.9
+++ gcc-6/buildstat.html	30 Sep 2018 14:21:07 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Build status for GCC 6</title>
Index: gcc-6/changes.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-6/changes.html,v
retrieving revision 1.108
diff -u -r1.108 changes.html
--- gcc-6/changes.html	29 Sep 2018 16:49:30 -0000	1.108
+++ gcc-6/changes.html	30 Sep 2018 14:21:07 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 6 Release Series &mdash; Changes, New Features, and Fixes</title>
Index: gcc-6/criteria.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-6/criteria.html,v
retrieving revision 1.3
diff -u -r1.3 criteria.html
--- gcc-6/criteria.html	1 Sep 2018 23:42:06 -0000	1.3
+++ gcc-6/criteria.html	30 Sep 2018 14:21:07 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 6 Release Criteria</title>
Index: gcc-6/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-6/index.html,v
retrieving revision 1.11
diff -u -r1.11 index.html
--- gcc-6/index.html	1 Sep 2018 23:42:06 -0000	1.11
+++ gcc-6/index.html	30 Sep 2018 14:21:07 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 6 Release Series</title>
Index: gcc-6/porting_to.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-6/porting_to.html,v
retrieving revision 1.28
diff -u -r1.28 porting_to.html
--- gcc-6/porting_to.html	23 Sep 2018 10:41:39 -0000	1.28
+++ gcc-6/porting_to.html	30 Sep 2018 14:21:07 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Porting to GCC 6</title>
Index: gcc-7/buildstat.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-7/buildstat.html,v
retrieving revision 1.5
diff -u -r1.5 buildstat.html
--- gcc-7/buildstat.html	1 Sep 2018 23:42:06 -0000	1.5
+++ gcc-7/buildstat.html	30 Sep 2018 14:21:07 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Build status for GCC 7</title>
Index: gcc-7/changes.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-7/changes.html,v
retrieving revision 1.110
diff -u -r1.110 changes.html
--- gcc-7/changes.html	2 Sep 2018 12:47:36 -0000	1.110
+++ gcc-7/changes.html	30 Sep 2018 14:21:07 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 7 Release Series &mdash; Changes, New Features, and Fixes</title>
Index: gcc-7/criteria.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-7/criteria.html,v
retrieving revision 1.6
diff -u -r1.6 criteria.html
--- gcc-7/criteria.html	1 Sep 2018 23:42:06 -0000	1.6
+++ gcc-7/criteria.html	30 Sep 2018 14:21:07 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 7 Release Criteria</title>
Index: gcc-7/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-7/index.html,v
retrieving revision 1.9
diff -u -r1.9 index.html
--- gcc-7/index.html	1 Sep 2018 23:42:06 -0000	1.9
+++ gcc-7/index.html	30 Sep 2018 14:21:07 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 7 Release Series</title>
Index: gcc-7/porting_to.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-7/porting_to.html,v
retrieving revision 1.17
diff -u -r1.17 porting_to.html
--- gcc-7/porting_to.html	23 Sep 2018 10:41:39 -0000	1.17
+++ gcc-7/porting_to.html	30 Sep 2018 14:21:07 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Porting to GCC 7</title>
Index: gcc-8/buildstat.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-8/buildstat.html,v
retrieving revision 1.4
diff -u -r1.4 buildstat.html
--- gcc-8/buildstat.html	1 Sep 2018 23:42:06 -0000	1.4
+++ gcc-8/buildstat.html	30 Sep 2018 14:21:07 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Build status for GCC 8</title>
Index: gcc-8/changes.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-8/changes.html,v
retrieving revision 1.96
diff -u -r1.96 changes.html
--- gcc-8/changes.html	12 Sep 2018 10:26:59 -0000	1.96
+++ gcc-8/changes.html	30 Sep 2018 14:21:08 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 <head>
 <title>GCC 8 Release Series &mdash; Changes, New Features, and Fixes</title>
 <link rel="stylesheet" type="text/css" href="https://gcc.gnu.org/gcc.css" />
Index: gcc-8/criteria.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-8/criteria.html,v
retrieving revision 1.4
diff -u -r1.4 criteria.html
--- gcc-8/criteria.html	1 Sep 2018 23:42:06 -0000	1.4
+++ gcc-8/criteria.html	30 Sep 2018 14:21:08 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 8 Release Criteria</title>
Index: gcc-8/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-8/index.html,v
retrieving revision 1.10
diff -u -r1.10 index.html
--- gcc-8/index.html	1 Sep 2018 23:42:06 -0000	1.10
+++ gcc-8/index.html	30 Sep 2018 14:21:08 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 8 Release Series</title>
Index: gcc-8/porting_to.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-8/porting_to.html,v
retrieving revision 1.11
diff -u -r1.11 porting_to.html
--- gcc-8/porting_to.html	22 Sep 2018 15:48:49 -0000	1.11
+++ gcc-8/porting_to.html	30 Sep 2018 14:21:08 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Porting to GCC 8</title>
Index: gcc-9/changes.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-9/changes.html,v
retrieving revision 1.21
diff -u -r1.21 changes.html
--- gcc-9/changes.html	12 Sep 2018 10:28:03 -0000	1.21
+++ gcc-9/changes.html	30 Sep 2018 14:21:09 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 <head>
 <title>GCC 9 Release Series &mdash; Changes, New Features, and Fixes</title>
 <link rel="stylesheet" type="text/css" href="https://gcc.gnu.org/gcc.css" />
Index: gcc-9/criteria.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-9/criteria.html,v
retrieving revision 1.3
diff -u -r1.3 criteria.html
--- gcc-9/criteria.html	1 Sep 2018 23:42:06 -0000	1.3
+++ gcc-9/criteria.html	30 Sep 2018 14:21:09 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 9 Release Criteria</title>
Index: news/alias.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/news/alias.html,v
retrieving revision 1.7
diff -u -r1.7 alias.html
--- news/alias.html	1 Sep 2018 23:42:07 -0000	1.7
+++ news/alias.html	30 Sep 2018 14:21:09 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Alias Analysis</title>
Index: news/announcement.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/news/announcement.html,v
retrieving revision 1.4
diff -u -r1.4 announcement.html
--- news/announcement.html	1 Sep 2018 23:42:07 -0000	1.4
+++ news/announcement.html	30 Sep 2018 14:21:09 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>The initial egcs project announcement</title>
Index: news/cfg.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/news/cfg.html,v
retrieving revision 1.8
diff -u -r1.8 cfg.html
--- news/cfg.html	1 Sep 2018 23:42:07 -0000	1.8
+++ news/cfg.html	30 Sep 2018 14:21:09 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Control Flow Infrastructure</title>
Index: news/chill.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/news/chill.html,v
retrieving revision 1.8
diff -u -r1.8 chill.html
--- news/chill.html	1 Sep 2018 23:42:07 -0000	1.8
+++ news/chill.html	30 Sep 2018 14:21:09 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Chill Front End</title>
Index: news/cprop.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/news/cprop.html,v
retrieving revision 1.7
diff -u -r1.7 cprop.html
--- news/cprop.html	1 Sep 2018 23:42:07 -0000	1.7
+++ news/cprop.html	30 Sep 2018 14:21:09 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Improved Global Constant/Copy Propagation</title>
Index: news/dependencies.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/news/dependencies.html,v
retrieving revision 1.6
diff -u -r1.6 dependencies.html
--- news/dependencies.html	1 Sep 2018 23:42:07 -0000	1.6
+++ news/dependencies.html	30 Sep 2018 14:21:09 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Dependency Generation Improvements</title>
Index: news/dfa.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/news/dfa.html,v
retrieving revision 1.10
diff -u -r1.10 dfa.html
--- news/dfa.html	1 Sep 2018 23:42:07 -0000	1.10
+++ news/dfa.html	30 Sep 2018 14:21:09 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>DFA Scheduler</title>
Index: news/dse.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/news/dse.html,v
retrieving revision 1.6
diff -u -r1.6 dse.html
--- news/dse.html	1 Sep 2018 23:42:07 -0000	1.6
+++ news/dse.html	30 Sep 2018 14:21:09 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Local Dead Store Elimination</title>
Index: news/egcs-vcg.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/news/egcs-vcg.html,v
retrieving revision 1.16
diff -u -r1.16 egcs-vcg.html
--- news/egcs-vcg.html	2 Sep 2018 09:10:56 -0000	1.16
+++ news/egcs-vcg.html	30 Sep 2018 14:21:09 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Drawing Flow Graphs</title>
Index: news/gcse.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/news/gcse.html,v
retrieving revision 1.7
diff -u -r1.7 gcse.html
--- news/gcse.html	2 Sep 2018 08:24:23 -0000	1.7
+++ news/gcse.html	30 Sep 2018 14:21:09 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Global CSE/Partial Redundancy Elimination</title>
Index: news/hoist.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/news/hoist.html,v
retrieving revision 1.6
diff -u -r1.6 hoist.html
--- news/hoist.html	1 Sep 2018 23:42:07 -0000	1.6
+++ news/hoist.html	30 Sep 2018 14:21:09 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Load/Store Hoisting</title>
Index: news/ia32.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/news/ia32.html,v
retrieving revision 1.9
diff -u -r1.9 ia32.html
--- news/ia32.html	1 Sep 2018 23:42:07 -0000	1.9
+++ news/ia32.html	30 Sep 2018 14:21:09 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>A New ia32 Backend</title>
Index: news/inlining.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/news/inlining.html,v
retrieving revision 1.9
diff -u -r1.9 inlining.html
--- news/inlining.html	1 Sep 2018 23:42:07 -0000	1.9
+++ news/inlining.html	30 Sep 2018 14:21:09 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Inlining Improvements</title>
Index: news/javaannounce.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/news/javaannounce.html,v
retrieving revision 1.9
diff -u -r1.9 javaannounce.html
--- news/javaannounce.html	1 Sep 2018 23:42:07 -0000	1.9
+++ news/javaannounce.html	30 Sep 2018 14:21:09 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>libgcj Announcement</title>
Index: news/lcm.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/news/lcm.html,v
retrieving revision 1.5
diff -u -r1.5 lcm.html
--- news/lcm.html	1 Sep 2018 23:42:07 -0000	1.5
+++ news/lcm.html	30 Sep 2018 14:21:09 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Lazy Code Motion Optimizer Framework</title>
Index: news/null.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/news/null.html,v
retrieving revision 1.7
diff -u -r1.7 null.html
--- news/null.html	1 Sep 2018 23:42:07 -0000	1.7
+++ news/null.html	30 Sep 2018 14:21:09 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Global Null Pointer Test Elimination</title>
Index: news/profiledriven.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/news/profiledriven.html,v
retrieving revision 1.15
diff -u -r1.15 profiledriven.html
--- news/profiledriven.html	1 Sep 2018 23:42:07 -0000	1.15
+++ news/profiledriven.html	30 Sep 2018 14:21:09 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Infrastructure for Profile Driven Optimizations</title>
Index: news/reorder.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/news/reorder.html,v
retrieving revision 1.5
diff -u -r1.5 reorder.html
--- news/reorder.html	1 Sep 2018 23:42:07 -0000	1.5
+++ news/reorder.html	30 Sep 2018 14:21:09 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Basic Block Reordering</title>
Index: news/server.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/news/server.html,v
retrieving revision 1.6
diff -u -r1.6 server.html
--- news/server.html	1 Sep 2018 23:42:07 -0000	1.6
+++ news/server.html	30 Sep 2018 14:21:09 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC Network/Server Upgrades</title>
Index: news/sms.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/news/sms.html,v
retrieving revision 1.9
diff -u -r1.9 sms.html
--- news/sms.html	1 Sep 2018 23:42:07 -0000	1.9
+++ news/sms.html	30 Sep 2018 14:21:09 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>SMS - Swing Modulo Scheduling in GCC</title>
Index: news/sparc.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/news/sparc.html,v
retrieving revision 1.9
diff -u -r1.9 sparc.html
--- news/sparc.html	1 Sep 2018 23:42:07 -0000	1.9
+++ news/sparc.html	30 Sep 2018 14:21:09 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>SPARC Backend Rewrite</title>
Index: news/spill.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/news/spill.html,v
retrieving revision 1.6
diff -u -r1.6 spill.html
--- news/spill.html	1 Sep 2018 23:42:07 -0000	1.6
+++ news/spill.html	30 Sep 2018 14:21:09 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Localized Register Spilling</title>
Index: news/ssa-ccp.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/news/ssa-ccp.html,v
retrieving revision 1.5
diff -u -r1.5 ssa-ccp.html
--- news/ssa-ccp.html	1 Sep 2018 23:42:07 -0000	1.5
+++ news/ssa-ccp.html	30 Sep 2018 14:21:10 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Sparse Conditional Constant Propagation</title>
Index: news/ssa.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/news/ssa.html,v
retrieving revision 1.11
diff -u -r1.11 ssa.html
--- news/ssa.html	1 Sep 2018 23:42:07 -0000	1.11
+++ news/ssa.html	30 Sep 2018 14:21:10 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Static Single Assignment</title>
Index: news/unify.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/news/unify.html,v
retrieving revision 1.6
diff -u -r1.6 unify.html
--- news/unify.html	1 Sep 2018 23:42:07 -0000	1.6
+++ news/unify.html	30 Sep 2018 14:21:10 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Global Code Hoisting/Unification</title>
Index: onlinedocs/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/index.html,v
retrieving revision 1.172
diff -u -r1.172 index.html
--- onlinedocs/index.html	1 Sep 2018 23:42:08 -0000	1.172
+++ onlinedocs/index.html	30 Sep 2018 14:21:11 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC online documentation</title>
Index: onlinedocs/4.6.0/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/4.6.0/index.html,v
retrieving revision 1.4
diff -u -r1.4 index.html
--- onlinedocs/4.6.0/index.html	1 Sep 2018 23:42:08 -0000	1.4
+++ onlinedocs/4.6.0/index.html	30 Sep 2018 14:21:11 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 4.6.0 manuals</title>
Index: onlinedocs/4.6.1/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/4.6.1/index.html,v
retrieving revision 1.4
diff -u -r1.4 index.html
--- onlinedocs/4.6.1/index.html	1 Sep 2018 23:42:08 -0000	1.4
+++ onlinedocs/4.6.1/index.html	30 Sep 2018 14:21:11 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 4.6.1 manuals</title>
Index: onlinedocs/4.6.2/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/4.6.2/index.html,v
retrieving revision 1.4
diff -u -r1.4 index.html
--- onlinedocs/4.6.2/index.html	1 Sep 2018 23:42:08 -0000	1.4
+++ onlinedocs/4.6.2/index.html	30 Sep 2018 14:21:11 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 4.6.2 manuals</title>
Index: onlinedocs/4.6.3/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/4.6.3/index.html,v
retrieving revision 1.4
diff -u -r1.4 index.html
--- onlinedocs/4.6.3/index.html	1 Sep 2018 23:42:08 -0000	1.4
+++ onlinedocs/4.6.3/index.html	30 Sep 2018 14:21:11 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 4.6.3 manuals</title>
Index: onlinedocs/4.6.4/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/4.6.4/index.html,v
retrieving revision 1.5
diff -u -r1.5 index.html
--- onlinedocs/4.6.4/index.html	1 Sep 2018 23:42:08 -0000	1.5
+++ onlinedocs/4.6.4/index.html	30 Sep 2018 14:21:11 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 4.6.4 manuals</title>
Index: onlinedocs/4.7.0/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/4.7.0/index.html,v
retrieving revision 1.4
diff -u -r1.4 index.html
--- onlinedocs/4.7.0/index.html	1 Sep 2018 23:42:08 -0000	1.4
+++ onlinedocs/4.7.0/index.html	30 Sep 2018 14:21:11 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 4.7.0 manuals</title>
Index: onlinedocs/4.7.1/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/4.7.1/index.html,v
retrieving revision 1.4
diff -u -r1.4 index.html
--- onlinedocs/4.7.1/index.html	1 Sep 2018 23:42:08 -0000	1.4
+++ onlinedocs/4.7.1/index.html	30 Sep 2018 14:21:11 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 4.7.1 manuals</title>
Index: onlinedocs/4.7.2/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/4.7.2/index.html,v
retrieving revision 1.4
diff -u -r1.4 index.html
--- onlinedocs/4.7.2/index.html	1 Sep 2018 23:42:08 -0000	1.4
+++ onlinedocs/4.7.2/index.html	30 Sep 2018 14:21:11 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 4.7.2 manuals</title>
Index: onlinedocs/4.7.3/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/4.7.3/index.html,v
retrieving revision 1.5
diff -u -r1.5 index.html
--- onlinedocs/4.7.3/index.html	1 Sep 2018 23:42:08 -0000	1.5
+++ onlinedocs/4.7.3/index.html	30 Sep 2018 14:21:11 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 4.7.3 manuals</title>
Index: onlinedocs/4.7.4/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/4.7.4/index.html,v
retrieving revision 1.4
diff -u -r1.4 index.html
--- onlinedocs/4.7.4/index.html	1 Sep 2018 23:42:08 -0000	1.4
+++ onlinedocs/4.7.4/index.html	30 Sep 2018 14:21:11 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 4.7.4 manuals</title>
Index: onlinedocs/4.8.0/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/4.8.0/index.html,v
retrieving revision 1.6
diff -u -r1.6 index.html
--- onlinedocs/4.8.0/index.html	1 Sep 2018 23:42:08 -0000	1.6
+++ onlinedocs/4.8.0/index.html	30 Sep 2018 14:21:11 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 4.8.0 manuals</title>
Index: onlinedocs/4.8.1/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/4.8.1/index.html,v
retrieving revision 1.5
diff -u -r1.5 index.html
--- onlinedocs/4.8.1/index.html	1 Sep 2018 23:42:08 -0000	1.5
+++ onlinedocs/4.8.1/index.html	30 Sep 2018 14:21:11 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 4.8.1 manuals</title>
Index: onlinedocs/4.8.2/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/4.8.2/index.html,v
retrieving revision 1.4
diff -u -r1.4 index.html
--- onlinedocs/4.8.2/index.html	1 Sep 2018 23:42:08 -0000	1.4
+++ onlinedocs/4.8.2/index.html	30 Sep 2018 14:21:11 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 4.8.2 manuals</title>
Index: onlinedocs/4.8.3/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/4.8.3/index.html,v
retrieving revision 1.4
diff -u -r1.4 index.html
--- onlinedocs/4.8.3/index.html	1 Sep 2018 23:42:08 -0000	1.4
+++ onlinedocs/4.8.3/index.html	30 Sep 2018 14:21:11 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 4.8.3 manuals</title>
Index: onlinedocs/4.8.4/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/4.8.4/index.html,v
retrieving revision 1.4
diff -u -r1.4 index.html
--- onlinedocs/4.8.4/index.html	1 Sep 2018 23:42:08 -0000	1.4
+++ onlinedocs/4.8.4/index.html	30 Sep 2018 14:21:11 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 4.8.4 manuals</title>
Index: onlinedocs/4.8.5/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/4.8.5/index.html,v
retrieving revision 1.4
diff -u -r1.4 index.html
--- onlinedocs/4.8.5/index.html	1 Sep 2018 23:42:08 -0000	1.4
+++ onlinedocs/4.8.5/index.html	30 Sep 2018 14:21:11 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 4.8.5 manuals</title>
Index: onlinedocs/4.9.0/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/4.9.0/index.html,v
retrieving revision 1.4
diff -u -r1.4 index.html
--- onlinedocs/4.9.0/index.html	1 Sep 2018 23:42:08 -0000	1.4
+++ onlinedocs/4.9.0/index.html	30 Sep 2018 14:21:12 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 4.9.0 manuals</title>
Index: onlinedocs/4.9.1/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/4.9.1/index.html,v
retrieving revision 1.3
diff -u -r1.3 index.html
--- onlinedocs/4.9.1/index.html	1 Sep 2018 23:42:08 -0000	1.3
+++ onlinedocs/4.9.1/index.html	30 Sep 2018 14:21:12 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 4.9.1 manuals</title>
Index: onlinedocs/4.9.2/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/4.9.2/index.html,v
retrieving revision 1.4
diff -u -r1.4 index.html
--- onlinedocs/4.9.2/index.html	1 Sep 2018 23:42:08 -0000	1.4
+++ onlinedocs/4.9.2/index.html	30 Sep 2018 14:21:12 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 4.9.2 manuals</title>
Index: onlinedocs/4.9.3/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/4.9.3/index.html,v
retrieving revision 1.4
diff -u -r1.4 index.html
--- onlinedocs/4.9.3/index.html	1 Sep 2018 23:42:08 -0000	1.4
+++ onlinedocs/4.9.3/index.html	30 Sep 2018 14:21:12 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 4.9.3 manuals</title>
Index: onlinedocs/4.9.4/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/4.9.4/index.html,v
retrieving revision 1.3
diff -u -r1.3 index.html
--- onlinedocs/4.9.4/index.html	1 Sep 2018 23:42:08 -0000	1.3
+++ onlinedocs/4.9.4/index.html	30 Sep 2018 14:21:12 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 4.9.4 manuals</title>
Index: onlinedocs/5.1.0/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/5.1.0/index.html,v
retrieving revision 1.4
diff -u -r1.4 index.html
--- onlinedocs/5.1.0/index.html	1 Sep 2018 23:42:08 -0000	1.4
+++ onlinedocs/5.1.0/index.html	30 Sep 2018 14:21:12 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 5.1 manuals</title>
Index: onlinedocs/5.2.0/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/5.2.0/index.html,v
retrieving revision 1.3
diff -u -r1.3 index.html
--- onlinedocs/5.2.0/index.html	1 Sep 2018 23:42:09 -0000	1.3
+++ onlinedocs/5.2.0/index.html	30 Sep 2018 14:21:12 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 5.2 manuals</title>
Index: onlinedocs/5.3.0/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/5.3.0/index.html,v
retrieving revision 1.3
diff -u -r1.3 index.html
--- onlinedocs/5.3.0/index.html	1 Sep 2018 23:42:09 -0000	1.3
+++ onlinedocs/5.3.0/index.html	30 Sep 2018 14:21:12 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 5.3 manuals</title>
Index: onlinedocs/5.4.0/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/5.4.0/index.html,v
retrieving revision 1.3
diff -u -r1.3 index.html
--- onlinedocs/5.4.0/index.html	1 Sep 2018 23:42:09 -0000	1.3
+++ onlinedocs/5.4.0/index.html	30 Sep 2018 14:21:12 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 5.4 manuals</title>
Index: onlinedocs/5.5.0/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/5.5.0/index.html,v
retrieving revision 1.3
diff -u -r1.3 index.html
--- onlinedocs/5.5.0/index.html	1 Sep 2018 23:42:09 -0000	1.3
+++ onlinedocs/5.5.0/index.html	30 Sep 2018 14:21:12 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 5.5 manuals</title>
Index: onlinedocs/6.1.0/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/6.1.0/index.html,v
retrieving revision 1.3
diff -u -r1.3 index.html
--- onlinedocs/6.1.0/index.html	1 Sep 2018 23:42:09 -0000	1.3
+++ onlinedocs/6.1.0/index.html	30 Sep 2018 14:21:12 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 6.1 manuals</title>
Index: onlinedocs/6.2.0/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/6.2.0/index.html,v
retrieving revision 1.3
diff -u -r1.3 index.html
--- onlinedocs/6.2.0/index.html	1 Sep 2018 23:42:09 -0000	1.3
+++ onlinedocs/6.2.0/index.html	30 Sep 2018 14:21:12 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 6.2 manuals</title>
Index: onlinedocs/6.3.0/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/6.3.0/index.html,v
retrieving revision 1.3
diff -u -r1.3 index.html
--- onlinedocs/6.3.0/index.html	1 Sep 2018 23:42:09 -0000	1.3
+++ onlinedocs/6.3.0/index.html	30 Sep 2018 14:21:13 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 6.3 manuals</title>
Index: onlinedocs/6.4.0/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/6.4.0/index.html,v
retrieving revision 1.3
diff -u -r1.3 index.html
--- onlinedocs/6.4.0/index.html	1 Sep 2018 23:42:09 -0000	1.3
+++ onlinedocs/6.4.0/index.html	30 Sep 2018 14:21:13 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 6.4 manuals</title>
Index: onlinedocs/7.1.0/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/7.1.0/index.html,v
retrieving revision 1.4
diff -u -r1.4 index.html
--- onlinedocs/7.1.0/index.html	1 Sep 2018 23:42:09 -0000	1.4
+++ onlinedocs/7.1.0/index.html	30 Sep 2018 14:21:13 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 7.1 manuals</title>
Index: onlinedocs/7.2.0/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/7.2.0/index.html,v
retrieving revision 1.3
diff -u -r1.3 index.html
--- onlinedocs/7.2.0/index.html	1 Sep 2018 23:42:09 -0000	1.3
+++ onlinedocs/7.2.0/index.html	30 Sep 2018 14:21:13 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 7.2 manuals</title>
Index: onlinedocs/7.3.0/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/7.3.0/index.html,v
retrieving revision 1.3
diff -u -r1.3 index.html
--- onlinedocs/7.3.0/index.html	1 Sep 2018 23:42:09 -0000	1.3
+++ onlinedocs/7.3.0/index.html	30 Sep 2018 14:21:13 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 7.3 manuals</title>
Index: onlinedocs/8.1.0/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/8.1.0/index.html,v
retrieving revision 1.3
diff -u -r1.3 index.html
--- onlinedocs/8.1.0/index.html	1 Sep 2018 23:42:09 -0000	1.3
+++ onlinedocs/8.1.0/index.html	30 Sep 2018 14:21:13 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 8.1 manuals</title>
Index: onlinedocs/8.2.0/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/8.2.0/index.html,v
retrieving revision 1.2
diff -u -r1.2 index.html
--- onlinedocs/8.2.0/index.html	1 Sep 2018 23:42:09 -0000	1.2
+++ onlinedocs/8.2.0/index.html	30 Sep 2018 14:21:13 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC 8.2 manuals</title>
Index: projects/ast-optimizer.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/ast-optimizer.html,v
retrieving revision 1.12
diff -u -r1.12 ast-optimizer.html
--- projects/ast-optimizer.html	1 Sep 2018 23:42:09 -0000	1.12
+++ projects/ast-optimizer.html	30 Sep 2018 14:21:13 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 <head>
 <title>Abstract Syntax Tree Optimizations</title>
 <link rel="stylesheet" type="text/css" href="https://gcc.gnu.org/gcc.css" />
Index: projects/beginner.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/beginner.html,v
retrieving revision 1.68
diff -u -r1.68 beginner.html
--- projects/beginner.html	1 Sep 2018 23:42:09 -0000	1.68
+++ projects/beginner.html	30 Sep 2018 14:21:13 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Simple GCC projects</title>
Index: projects/c-frontend.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/c-frontend.html,v
retrieving revision 1.5
diff -u -r1.5 c-frontend.html
--- projects/c-frontend.html	1 Sep 2018 23:42:09 -0000	1.5
+++ projects/c-frontend.html	30 Sep 2018 14:21:13 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Projects for the C front end</title>
Index: projects/cfg.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/cfg.html,v
retrieving revision 1.28
diff -u -r1.28 cfg.html
--- projects/cfg.html	1 Sep 2018 23:42:09 -0000	1.28
+++ projects/cfg.html	30 Sep 2018 14:21:14 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Improving GCC's Infrastructure (Central Flow Graph)</title>
Index: projects/cfo.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/cfo.html,v
retrieving revision 1.18
diff -u -r1.18 cfo.html
--- projects/cfo.html	10 Sep 2018 21:28:50 -0000	1.18
+++ projects/cfo.html	30 Sep 2018 14:21:14 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 <head>
 <title>Code Factoring Optimizations</title>
 <link rel="stylesheet" type="text/css" href="https://gcc.gnu.org/gcc.css" />
Index: projects/cli.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/cli.html,v
retrieving revision 1.34
diff -u -r1.34 cli.html
--- projects/cli.html	1 Sep 2018 23:42:09 -0000	1.34
+++ projects/cli.html	30 Sep 2018 14:21:14 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 <head>
 <title>CLI Back-End and Front-End</title>
 <link rel="stylesheet" type="text/css" href="https://gcc.gnu.org/gcc.css" />
Index: projects/cpplib.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/cpplib.html,v
retrieving revision 1.26
diff -u -r1.26 cpplib.html
--- projects/cpplib.html	1 Sep 2018 23:42:09 -0000	1.26
+++ projects/cpplib.html	30 Sep 2018 14:21:14 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>cpplib TODO</title>
Index: projects/cxx-status.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/cxx-status.html,v
retrieving revision 1.60
diff -u -r1.60 cxx-status.html
--- projects/cxx-status.html	18 Sep 2018 19:24:04 -0000	1.60
+++ projects/cxx-status.html	30 Sep 2018 14:21:15 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 <head>
   <title>C++ Standards Support in GCC</title>
 <link rel="stylesheet" type="text/css" href="https://gcc.gnu.org/gcc.css" />
Index: projects/cxx0x.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/cxx0x.html,v
retrieving revision 1.77
diff -u -r1.77 cxx0x.html
--- projects/cxx0x.html	10 Sep 2018 19:05:45 -0000	1.77
+++ projects/cxx0x.html	30 Sep 2018 14:21:15 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
   <head> 
     <meta http-equiv="refresh" content="1; url=cxx-status.html#cxx11" />
     
Index: projects/cxx1y.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/cxx1y.html,v
retrieving revision 1.33
diff -u -r1.33 cxx1y.html
--- projects/cxx1y.html	10 Sep 2018 19:05:46 -0000	1.33
+++ projects/cxx1y.html	30 Sep 2018 14:21:15 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
   <head> 
     <meta http-equiv="refresh" content="1; url=cxx-status.html#cxx14" />
     
Index: projects/documentation.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/documentation.html,v
retrieving revision 1.13
diff -u -r1.13 documentation.html
--- projects/documentation.html	1 Sep 2018 23:42:09 -0000	1.13
+++ projects/documentation.html	30 Sep 2018 14:21:18 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Documentation projects</title>
Index: projects/gupc.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/gupc.html,v
retrieving revision 1.16
diff -u -r1.16 gupc.html
--- projects/gupc.html	1 Sep 2018 23:42:09 -0000	1.16
+++ projects/gupc.html	30 Sep 2018 14:21:18 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 <head>
 <title>GUPC &mdash; A UPC implementation for GCC</title>
 <link rel="stylesheet" type="text/css" href="https://gcc.gnu.org/gcc.css" />
Index: projects/h8300-abi.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/h8300-abi.html,v
retrieving revision 1.11
diff -u -r1.11 h8300-abi.html
--- projects/h8300-abi.html	10 Sep 2018 08:27:20 -0000	1.11
+++ projects/h8300-abi.html	30 Sep 2018 14:21:18 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 <head>
 <title>H8/300 Application Binary Interface for GCC</title>
 <link rel="stylesheet" type="text/css" href="https://gcc.gnu.org/gcc.css" />
Index: projects/ia64.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/ia64.html,v
retrieving revision 1.27
diff -u -r1.27 ia64.html
--- projects/ia64.html	1 Sep 2018 23:42:09 -0000	1.27
+++ projects/ia64.html	30 Sep 2018 14:21:18 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Projects to improve performance on IA-64</title>
Index: projects/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/index.html,v
retrieving revision 1.74
diff -u -r1.74 index.html
--- projects/index.html	1 Sep 2018 23:42:09 -0000	1.74
+++ projects/index.html	30 Sep 2018 14:21:18 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC Projects</title>
Index: projects/mipso64-abi.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/mipso64-abi.html,v
retrieving revision 1.3
diff -u -r1.3 mipso64-abi.html
--- projects/mipso64-abi.html	1 Sep 2018 23:42:09 -0000	1.3
+++ projects/mipso64-abi.html	30 Sep 2018 14:21:18 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 <head>
 <title>MIPS O64 Application Binary Interface for GCC</title>
 <link rel="stylesheet" type="text/css" href="https://gcc.gnu.org/gcc.css" />
Index: projects/optimize.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/optimize.html,v
retrieving revision 1.17
diff -u -r1.17 optimize.html
--- projects/optimize.html	1 Sep 2018 23:42:09 -0000	1.17
+++ projects/optimize.html	30 Sep 2018 14:21:18 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Optimizer deficiencies</title>
Index: projects/prefetch.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/prefetch.html,v
retrieving revision 1.38
diff -u -r1.38 prefetch.html
--- projects/prefetch.html	9 Sep 2018 20:32:39 -0000	1.38
+++ projects/prefetch.html	30 Sep 2018 14:21:18 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Data Prefetch Support</title>
Index: projects/sched-treegion.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/sched-treegion.html,v
retrieving revision 1.11
diff -u -r1.11 sched-treegion.html
--- projects/sched-treegion.html	23 Sep 2018 14:51:17 -0000	1.11
+++ projects/sched-treegion.html	30 Sep 2018 14:21:18 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 <head>
 <title>Treegion Scheduling</title>
 <link rel="stylesheet" type="text/css" href="https://gcc.gnu.org/gcc.css" />
Index: projects/tree-profiling.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/tree-profiling.html,v
retrieving revision 1.5
diff -u -r1.5 tree-profiling.html
--- projects/tree-profiling.html	1 Sep 2018 23:42:10 -0000	1.5
+++ projects/tree-profiling.html	30 Sep 2018 14:21:18 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Improving GCC's Interprocedural Optimization Infrastructure</title>
Index: projects/x86.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/x86.html,v
retrieving revision 1.6
diff -u -r1.6 x86.html
--- projects/x86.html	2 Sep 2018 13:20:18 -0000	1.6
+++ projects/x86.html	30 Sep 2018 14:21:18 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Optimizer deficiencies for the ia32 and x86-64 architectures</title>
Index: projects/bp/main.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/bp/main.html,v
retrieving revision 1.23
diff -u -r1.23 main.html
--- projects/bp/main.html	2 Sep 2018 17:27:07 -0000	1.23
+++ projects/bp/main.html	30 Sep 2018 14:21:18 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Bounds Checking in C &amp; C++ using Bounded Pointers</title>
Index: projects/cxx-reflection/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/cxx-reflection/index.html,v
retrieving revision 1.8
diff -u -r1.8 index.html
--- projects/cxx-reflection/index.html	1 Sep 2018 23:42:10 -0000	1.8
+++ projects/cxx-reflection/index.html	30 Sep 2018 14:21:18 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 <head>
 <title>Compile Time Reflection and Template Meta-Programming in C++</title>
 <link rel="stylesheet" type="text/css" href="https://gcc.gnu.org/gcc.css" />
Index: projects/gomp/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/gomp/index.html,v
retrieving revision 1.25
diff -u -r1.25 index.html
--- projects/gomp/index.html	1 Sep 2018 23:42:10 -0000	1.25
+++ projects/gomp/index.html	30 Sep 2018 14:21:18 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 <head>
 <title>GOMP &mdash; An OpenMP implementation for GCC</title>
 <link rel="stylesheet" type="text/css" href="https://gcc.gnu.org/gcc.css" />
Index: projects/strees/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/strees/index.html,v
retrieving revision 1.5
diff -u -r1.5 index.html
--- projects/strees/index.html	2 Sep 2018 13:02:32 -0000	1.5
+++ projects/strees/index.html	30 Sep 2018 14:21:18 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 <head><title>Stree design notes</title>
 <link rel="stylesheet" type="text/css" href="https://gcc.gnu.org/gcc.css" /></head>
 <body>
Index: projects/tree-ssa/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/tree-ssa/index.html,v
retrieving revision 1.48
diff -u -r1.48 index.html
--- projects/tree-ssa/index.html	1 Sep 2018 23:42:10 -0000	1.48
+++ projects/tree-ssa/index.html	30 Sep 2018 14:21:18 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 <head>
 <title>SSA for Trees</title>
 <link rel="stylesheet" type="text/css" href="https://gcc.gnu.org/gcc.css" />
Index: projects/tree-ssa/lno.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/tree-ssa/lno.html,v
retrieving revision 1.8
diff -u -r1.8 lno.html
--- projects/tree-ssa/lno.html	1 Sep 2018 23:42:10 -0000	1.8
+++ projects/tree-ssa/lno.html	30 Sep 2018 14:21:18 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 <head>
 <title>Loop Nest Optimizer</title>
 <link rel="stylesheet" type="text/css" href="https://gcc.gnu.org/gcc.css" />
Index: projects/tree-ssa/tree-browser.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/tree-ssa/tree-browser.html,v
retrieving revision 1.6
diff -u -r1.6 tree-browser.html
--- projects/tree-ssa/tree-browser.html	2 Sep 2018 11:59:39 -0000	1.6
+++ projects/tree-ssa/tree-browser.html	30 Sep 2018 14:21:18 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
   <head>
     <title>Tree Browser</title>
 <link rel="stylesheet" type="text/css" href="https://gcc.gnu.org/gcc.css" />
Index: projects/tree-ssa/vectorization.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/tree-ssa/vectorization.html,v
retrieving revision 1.41
diff -u -r1.41 vectorization.html
--- projects/tree-ssa/vectorization.html	11 Sep 2018 19:40:09 -0000	1.41
+++ projects/tree-ssa/vectorization.html	30 Sep 2018 14:21:18 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
     <title>Auto-vectorization in GCC</title>
Index: testing/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/testing/index.html,v
retrieving revision 1.42
diff -u -r1.42 index.html
--- testing/index.html	9 Sep 2018 20:37:56 -0000	1.42
+++ testing/index.html	30 Sep 2018 14:21:18 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>GCC Testing Efforts</title>
Index: testing/testing-blitz.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/testing/testing-blitz.html,v
retrieving revision 1.10
diff -u -r1.10 testing-blitz.html
--- testing/testing-blitz.html	1 Sep 2018 23:42:10 -0000	1.10
+++ testing/testing-blitz.html	30 Sep 2018 14:21:18 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Blitz++ build and test guide</title>
Index: testing/testing-boost.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/testing/testing-boost.html,v
retrieving revision 1.9
diff -u -r1.9 testing-boost.html
--- testing/testing-boost.html	1 Sep 2018 23:42:10 -0000	1.9
+++ testing/testing-boost.html	30 Sep 2018 14:21:18 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Boost build and test guide</title>
Index: testing/testing-ftensor.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/testing/testing-ftensor.html,v
retrieving revision 1.8
diff -u -r1.8 testing-ftensor.html
--- testing/testing-ftensor.html	1 Sep 2018 23:42:10 -0000	1.8
+++ testing/testing-ftensor.html	30 Sep 2018 14:21:18 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>FTensor build and test guide</title>
Index: testing/testing-lapack.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/testing/testing-lapack.html,v
retrieving revision 1.5
diff -u -r1.5 testing-lapack.html
--- testing/testing-lapack.html	1 Sep 2018 23:42:10 -0000	1.5
+++ testing/testing-lapack.html	30 Sep 2018 14:21:18 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>LAPACK build and test guide</title>
Index: testing/testing-pooma.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/testing/testing-pooma.html,v
retrieving revision 1.9
diff -u -r1.9 testing-pooma.html
--- testing/testing-pooma.html	1 Sep 2018 23:42:10 -0000	1.9
+++ testing/testing-pooma.html	30 Sep 2018 14:21:18 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>FreePOOMA build and test guide</title>
Index: testing/testing-qt.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/testing/testing-qt.html,v
retrieving revision 1.9
diff -u -r1.9 testing-qt.html
--- testing/testing-qt.html	1 Sep 2018 23:42:10 -0000	1.9
+++ testing/testing-qt.html	30 Sep 2018 14:21:18 -0000
@@ -1,5 +1,5 @@ 
 <!DOCTYPE html>
-<html>
+<html lang="en">
 
 <head>
 <title>Qt build and test guide</title>