Charles Howard, 12th Earl of Carlisle

Charles James Ruthven Howard, 12th Earl of Carlisle, 12th Lord Ruthven of Freeland MC (21 February 1923 – 28 November 1994), styled Viscount Morpeth until 1963, was an English nobleman, politician, and peer.

Background and education

Lord Carlisle was the son of George Howard, 11th Earl of Carlisle and Bridget Monckton, 11th Lady Ruthven of Freeland. He was educated at Eton College. He succeeded his father in the earldom in 1963 and his mother in the lordship of Ruthven of Freeland in 1982.[1]

Family

Lord Carlisle married the Honourable Ela Helen Aline [2] (1925-2002), daughter of Wentworth Beaumont, 2nd Viscount Allendale, on 3 October 1945. They had four children:

gollark: Well, it's generic, obviously safer, and appears to involve less weird pointer meddling.
gollark: And 🦀Safe Rust™🦀.
gollark: See, this is much nicer.
gollark: ```rustpub struct List<T> { head: Link<T>,}type Link<T> = Option<Box<Node<T>>>;struct Node<T> { elem: T, next: Link<T>,}impl<T> List<T> { pub fn new() -> Self { List { head: None } } pub fn push(&mut self, elem: T) { let new_node = Box::new(Node { elem: elem, next: self.head.take(), }); self.head = Some(new_node); } pub fn pop(&mut self) -> Option<T> { self.head.take().map(|node| { self.head = node.next; node.elem }) }}impl<T> Drop for List<T> { fn drop(&mut self) { let mut cur_link = self.head.take(); while let Some(mut boxed_node) = cur_link { cur_link = boxed_node.next.take(); } }}```
gollark: ... or at all?

References

Peerage of England
Preceded by
George Howard
Earl of Carlisle
1963–1994
Succeeded by
George Howard
Peerage of Scotland
Preceded by
Bridget Monckton
Lord Ruthven of Freeland
1982–1994
Succeeded by
George Howard
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.